码迷,mamicode.com
首页 > 编程语言 > 详细

小程序--冒泡排序

时间:2016-03-17 16:16:18      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

//冒泡排序:相邻两个比较,选出最大的往后放
class Alhh{
public static void main(String[] args){
int[] m=new int[]{-3,12,4,15,-99};
for(int i=0;i<m.length-1;i++){
for(int j=0;j<m.length-1-i;j++){
if(m[j]>m[j+1]){
int temp=m[j];
m[j]=m[j+1];
m[j+1]=temp;
}
}

}
for(int i=0;i<m.length;i++){
System.out.print(m[i]+"\t");
}
}
}

小程序--冒泡排序

标签:

原文地址:http://www.cnblogs.com/alhh/p/5287687.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!