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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. class  Demo_ArrayList
  2. {
  3.         public static void main(String[] args)
  4.         {
  5.                 int [] arr = {81,72,63,44,55,46,37,88};  //9
  6.                 int temp;
  7.                 for (int x = 0; x < arr.length ;x++ )
  8.                 {
  9.                         int max = 0;
  10.                         for (int y = 1; y < (arr.length-x) ; y++ )
  11.                         {
  12.                                 if(arr[y] > arr[max])
  13.                                 {
  14.                                         max = y;
  15.                                         System.out.println(max);
  16.                                 }
  17.                        
  18.                                 /*
  19.                                 temp = arr [arr.length-x-1];
  20.                                 arr[arr.length-x-1] = arr [max];
  21.                                 arr[max] = temp;
  22.                                 */
  23.                         }
  24.                         temp = arr [arr.length-x-1];
  25.                         arr[arr.length-x-1] = arr [max];
  26.                         arr[max] = temp;
  27.                        
  28.                 }

  29.                 for (int x = 0 ; x < arr.length ; x ++)
  30.                 {
  31.                         System.out.print(arr[x]+ "  ");
  32.                 }
  33.         }
  34. }
复制代码
求指点。

2 个回复

倒序浏览
这不是冒泡排序吗?
回复 使用道具 举报
666666666
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马