• Java排序方法sort的使用详解


    对数组的排序:

    1 //对数组排序
    2 public void arraySort(){
    3     int[] arr = {1,4,6,333,8,2};
    4     Arrays.sort(arr);//使用java.util.Arrays对象的sort方法
    5     for(int i=0;i<arr.length;i++){
    6         System.out.println(arr[i]);
    7     }
    8 }

    对集合的排序:

     1 //对list升序排序
     2     public void listSort1(){
     3         List<Integer> list = new ArrayList<Integer>();
     4         list.add(1);
     5         list.add(55);
     6         list.add(9);
     7         list.add(0);
     8         list.add(2);
     9         Collections.sort(list);//使用Collections的sort方法
    10         for(int a :list){
    11             System.out.println(a);
    12         }
    13     }
    14     //对list降序排序
    15     public void listSort2(){
    16         List<Integer> list = new ArrayList<Integer>();
    17         list.add(1);
    18         list.add(55);
    19         list.add(9);
    20         list.add(0);
    21         list.add(2);
    22         Collections.sort(list, new Comparator<Integer>() {
    23             public int compare(Integer o1, Integer o2) {
    24                 return o2 - o1;
    25             }
    26         });//使用Collections的sort方法,并且重写compare方法
    27         for(int a :list){
    28             System.out.println(a);
    29         }
    30     }<br>注意:Collections的sort方法默认是升序排列,如果需要降序排列时就需要重写conpare方法
  • 相关阅读:
    6.1 tar:打包备份
    6.3-4 zip、unzip
    6.5 scp:远程文件复制
    S7 Linux用户管理及用户信息查询命令
    7.6 passwd:修改用户密码
    7.2-5 usermod
    DES
    FreeRTOS笔记
    第4章 裸机系统和多任务系统
    第008课_第1个ARM落版程序及引申
  • 原文地址:https://www.cnblogs.com/lwx521/p/7627045.html
Copyright © 2020-2023  润新知