继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

用Java语言写冒泡排序

qq_逆流_14
关注TA
已关注
手记 2
粉丝 1
获赞 11
public class BubbleSort{  
      public static void main(String[] args){  
          int score[] = {67, 69, 75, 87, 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] < score[j + 1]){    //把小的值交换到后面  
                      int temp = score[j];  
                      score[j] = score[j + 1];  
                      score[j + 1] = temp;  
                  }  
              }              
              System.out.print("第" + (i + 1) + "次排序结果:");  
              for(int a = 0; a < score.length; a++){  
                  System.out.print(score[a] + "\t");  
              }  
              System.out.println("");  
          }  
              System.out.print("最终排序结果:");  
              for(int a = 0; a < score.length; a++){  
                  System.out.print(score[a] + "\t");  
         }  
      }  
  }
打开App,阅读手记
1人推荐
发表评论
随时随地看视频慕课网APP