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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

package cn.itcast_02;
/*
* 选择排序的代码实现!
*/
public class arrDemo {
          public static void main(String[] args) {
                //定义一个数组
                  int [] arr = {11,33,22,66,44,77,55};
                  System.out.println("排序前:");
                  printArray(arr);
               
                 //不是使用功能的方法
                 for(int x = 0;x<arr.length-1;x++){
                         for(int y =x+1;y<arr.length;y++){
                                 if(arr[y]<arr[x]){
                                         int temp = arr[x];
                                         arr[x] = arr[y];
                                         arr[y] = temp;
                                 }
                         }
                         System.out.println("排序后1:");
                         printArray(arr);
                 }
                 //调方法
                 selectSort(arr);
        }
          //使用功能的方法
          public static void selectSort(int [] arr){
                  for(int x = 0;x<arr.length-1;x++){
                                 for(int y =x+1;y<arr.length;y++){
                                         if(arr[y]<arr[x]){
                                                 int temp = arr[x];
                                                 arr[x] = arr[y];
                                                 arr[y] = temp;
                                         }
                                 }
                                 System.out.println("排序后2:");
                                 printArray(arr);
                         }
          }
          //首先要遍历数组
          public static void printArray(int [] arr){
                  System.out.print("[");
                  for(int x =0;x<arr.length;x++){
                          if(x == arr.length-1){
                                  System.out.println(arr[x] + "]");
                          }else{
                                  System.out.print(arr[x] + ", ");
                          }
                  }
          }
}

0 个回复

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