当前位置:   article > 正文

三种改变 PriorityQueue 排序方式的办法_priorityqueue p = new priorityqueue<>();

priorityqueue p = new priorityqueue<>();


一、调用 comparator.reverseOrder () 方法

PriorityQueue<Integer> pq = new PriorityQueue<>(Comparator.reverseOrder());
  • 1

二、Override comparator

PriorityQueue pq = new PriorityQueue<>(new Comparator<Integer>() {
    @Override
    public int compare(Integer a, Integer b) {
        return b - a;
    }
});
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

三、Lamda 表达式

PriorityQueue<Integer> pq = new PriorityQueue<>((a, b) -> b - a);
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/277084
推荐阅读
相关标签
  

闽ICP备14008679号