A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© feey 中级黑马   /  2016-5-25 00:03  /  209 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

public class BubbleSort{
       public static void main(String[] args){
            int score[] = {67, 69, 75, 66, 89, 90, 99, 100};
            for (int i = 0; i < score.length -1; i++){    //最多做n-1趟排序
                for(int j = 0 ;j < score.length - i - 1; j++){    //对当前无序区间score[0......length-i-1]进行排序(j的范围很关键,这个范围是在逐步缩小的)
                    if(score[j + 1] < score[j]){    //把小的值交换到后面
                        int temp = score[j];
                        score[j] = score[j + 1];
                        score[j + 1] = temp;
                   }
               }            
    }
            for (int j = 0; j < score.length; j++) {
             System.out.print(" " +  score[j] + " ");
               
       }
       }
}

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马