赞
踩
刷LeetCode时,遇到一道题需要使用优先级队列,并且需要自定义排序规则,由于优先级队列使用并不多,遂做一下笔记,方便以后查看。
优先级队列实际上就是一个堆(不指定Comparator时默认为小根堆),队列既可以根据元素的自然顺序来排序,也可以根据 Comparator来设置排序规则。
具有以下特点:
定义排序规则为大根堆:
PriorityQueue<Integer> pq = new PriorityQueue<>(
new Comparator<Integer>() {
public int compare(Integer i1, Integer i2) {
return i2 - i1;
}
});
当元素为复合结构时,自定义排序规则
//使用lamda表达式
PriorityQueue<Map.Entry<Integer,Integer>> pq = new PriorityQueue<>((o1,o2)->o1.getValue()-o2.getValue());
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。