算法之冒泡排序
Posted ymx8573
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了算法之冒泡排序相关的知识,希望对你有一定的参考价值。
public class BubbleSort {
public static void main(String[] args) {
int[] arr={6,3,8,2,9,1};
System.out.println("排序前数组为:");
for(int num:arr){
System.out.print(num+" ");
}
for(int i=0;i<arr.length-1;i++){
for(int j=0;j<arr.length-1-i;j++){
if(arr[j]>arr[j+1]){
int temp=arr[j];
arr[j]=arr[j+1];
arr[j+1]=temp;
}
}
}
System.out.println();
System.out.println("排序后的数组为:");
for(int num:arr){
System.out.print(num+" ");
}
}
}
以上是关于算法之冒泡排序的主要内容,如果未能解决你的问题,请参考以下文章