标签:rgs alt str 最大 new 控制 void test 对比
最近面试被问到关于冒泡排序,这次特地记录下关于冒泡排序的思路:public class testmaopao {
public static void main(String[] args) {
//冒泡排序算法
int[] numbers=new int[]{1,5,8,2,3,9,4};
for(int i=0;i<numbers.length;i++){//控制循环次数
for (int j=i+1;j<numbers.length;j++){//控制数据比对次数
if(numbers[i]<numbers[j]){//比对两个数,前一个数比后一个数据小就交换2个数据的位置
int s=numbers[i];
numbers[i]=numbers[j];
numbers[j]=s;
}
}
}
for (int k:numbers) {
System.out.println(k);
}
}
}
标签:rgs alt str 最大 new 控制 void test 对比
原文地址:https://blog.51cto.com/12390959/2450362