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

28.冒泡排序

时间:2016-05-27 23:45:10      阅读:351      评论:0      收藏:0      [点我收藏+]

标签:

/*
 * 冒泡排序
 * */
public class SortNum {
    public static void main(String[] args) {
        int[] scores={16,25,9,90,23};
        for (int i = 0; i < scores.length -1 ; i++)
        {
              for (int j = 0; j < scores.length -1 - i ; j++)
              {
                    if (scores[j] > scores[j + 1])
                    { 
                          // 交换元素
                          int temp = scores[j];
                          scores[j] = scores[j + 1];
                          scores[j + 1] = temp;
                    }
              }
        }
        System.out.println("冒泡排序后:");
        for(int score:scores){
            System.out.print(score+"\t");
        }
    }
}

 

28.冒泡排序

标签:

原文地址:http://www.cnblogs.com/xiaotaoxu/p/5536339.html

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