当前位置:  开发笔记 > 编程语言 > 正文

以相反顺序Java对Arraylist中的数组进行排序

如何解决《以相反顺序Java对Arraylist中的数组进行排序》经验,为你挑选了1个好方法。

我用Arrays制作了一个Arraylist,我想按相反的顺序按照数组中的第一项进行排序.例如:

ArrayList arr = new ArrayList<>();
arr.add[1,500,20];
arr.add[5,30,60];
arr.add[2,10,20];

我想这样排序:

[5,30,60],[2,100,20],[1,500,300]

Java中有没有选项可以做到这一点?我知道Comparator,但在这种情况下我不知道如何使用它.

感谢帮助



1> YoungHobbit..:

你可以实现一个客户Comparator,并把它传递给Collections.sort()与一起ArrayList.

ArrayList arrayList = new ArrayList<>();
arrayList.add(new int[]{1,500,20});
arrayList.add(new int[]{5,30,60});
arrayList.add(new int[]{2,10,20});

// Custom `Comparator` to sort the list of int [] on the basis of first element.
Collections.sort(arrayList, new Comparator() {
  @Override
  public int compare(int[] a1, int[] a2) {
    return a2[0] - a1[0];  // the reverse order is define here.
  }
});

// Output to STDOUT
for(int a[] : arrayList) {
  for (int i: a){
    System.out.print(i + "\t");
  }
  System.out.println();
}

输出:

5   30  60  
2   10  20  
1   500 20  

免责声明:上面的代码不处理像null和的角落案件empty array (zero size).请根据您的需要适当处理.

推荐阅读
贾志军
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有