优先队列

设置成
降序: Queue<Integer> heap=new PriorityQueue<>((a, b) -> b.compareTo(a));
b<a
升序: Queue<Integer> heap=new PriorityQueue<>((a, b) -> a.compareTo(b));
a<b

 

posted on 2023-07-25 11:25  HHHuskie  阅读(3)  评论(0编辑  收藏  举报

导航