当前位置:   article > 正文

PriorityQueue(优先队列)_new priorityqueue

new priorityqueue

一. 优先级队列(PriorityQueue)

1.1 概念:

我们都知道队列是一种先进先出的数据结构,没有优先级,众数据平等.
但是在某些情况下,我们操作的数据可能带有优先级,出队列时要优先级高的先出,低的后出.
在这种情况下,我们的数据结构应该提供两个最基本的操作,一个是返回最高优先级对象,一个是添加新的对象.这种数据结构就是我们今天要介绍的优先级队列.

1.1.1 PriorityQueue的特性.

在Java的集成框架中主要有两种类型的优先级队列,分别为:PriorityQueuePriorityBlockingQueue
PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的.我们这篇文章主要介绍PriorityQueue.

注意:
a.在使用PriorityQueue时必须要导入PriorityQueue所在的包:
import java.util.PriorityQueue;
虽然我们现在使用的IDE会自动导包,但是一些基础的还是要记一下,毕竟面试的时候是没有自动导包的.
b.PriorityQueue中放置的元素必须要能够比较大小,不能插入无法比较大小的对象,否则会抛出ClassCastException(类型转换异常).
c. 不能插入null对象,否则会抛出NullPointerException(空指针异常)
d. 没有容量限制,可以插入任意多个元素,其内部可以自动扩容
e.插入和删除元素的时间复杂度为
在这里插入图片描述
f. PriorityQueue底层使用了堆数据结构(堆我会在第二部分进行讲解的)
g. PriorityQueue默认情况下是小堆—即每次获取到的元素都是最小的元素
大堆—即每次获取到的元素都是最大的元素
小堆,大堆都会在第二部分进行讲解的.

1.2 PriorityQueue常用接口介绍.

1.2.1 优先级队列的构造.

先来看一个表格熟悉一下构造器.

构造器功能介绍
无参:PriorityQueue()创建一个空的优先级队列,默认容量为11
有参:PriorityQueue(int initialCapacity)创建一个初始容量为initialCapacity的优先级队列,注意:initialCapacity不能小于1,否则会抛IllegalArgumentException异常
PriorityQueue(Collection<? extends E> c)用一个集合来创建优先级队列

我们来做一个简单测试:

  1. public static void TestPriorityQueue{
  2. //创建一个空的优先级队列,存放的是Integer类型数据,底层默认容量是11.
  3. PriorityQueue<Integer> pq1=new PriorityQueue<>();
  4. //创建一个空的优先级队列,存放的是Integer类型数据,底层容量为100.
  5. PriorityQueue<Integer> pq2=new PriorityQueue<>(100);
  6. List<Integer> list=new ArrayList<Integer>();
  7. //向list里面添加元素.我这里给的数据无序.
  8. list.add(2);
  9. list.add(3);
  10. list.add(1);
  11. list.add(4);
  12. //用ArrayList对象来构造一个优先级队列的对象
  13. PriorityQueue<Integer> pq3=new PriorityQueue<>(list);
  14. //打印pq3中有效元素个数
  15. System.out.println(pq3.size()); //4
  16. //拿到优先级最高的元素.因为底层默认是小堆,所以堆顶存放的是最小元素,是1.
  17. System.out.println(pq3.peek()); //1
  18. }

1.2.2 优先级队列中的常用方法

方法功能
boolean offer(E e)插入元素e,插入成功返回true,如果e对象为空,抛出NullPointerException异常,注意:在空间不够时会自动进行扩容
E peek()回去优先级最高的元素,如果优先级队列为空,返回null
E poll()移除优先级最高的元素并返回,如果优先级队列为空,返回null
int size()获取有效元素的个数
void clear()清空
boolean isEmpty()检测优先级队列是否为空,为空返回true,否则false
  1. public void method2(){
  2. PriorityQueue<Integer> p=new PriorityQueue<>();
  3. //插入元素
  4. p.offer(1);
  5. p.offer(4);
  6. p.offer(3);
  7. p.offer(6);
  8. p.offer(5);
  9. //打印有效元素个数.
  10. System.out.println(p.size()); //5
  11. //p.offer(null); //优先级队列中不能插入空的元素
  12. //获取优先级最高的元素
  13. System.out.println(p.peek()); //1
  14. p.poll(); //1
  15. p.poll(); //3
  16. p.poll(); //4
  17. System.out.println(p.size()); //2
  18. p.clear(); //清空,此时优先级队列为空.
  19. if (p.isEmpty()){ //true
  20. System.out.println("p is null");
  21. }else{
  22. System.out.println("p is not null" );
  23. }
  24. System.out.println(p.size());
  25. }

默认情况下,PriorityQueue是小堆,如果需要大堆的话,就需要自己去实现一个比较器.

  1. //直接实现Comparator接口,然后重写该接口中的compare方法即可
  2. class IntCmp implements Comparator<Integer>{
  3. public int compare(Integer o1, Integer o2) {
  4. return o2-o1;
  5. //o1-o2是小堆,o2-o1是大堆.
  6. }
  7. }

测试一下:

  1. public class Test{
  2. public static void main(String[] args) {
  3. PriorityQueue p=new PriorityQueue(new IntCmp());
  4. p.offer(2);
  5. p.offer(4);
  6. p.offer(6);
  7. p.offer(1);
  8. //此时.打印的结果就是6而不是1.
  9. System.out.println(p.peek());
  10. }
  11. }

二:优先级队列(PriorityQueue)的模拟实现

PriorityQueue的底层使用了堆来实现,而堆实际上就是在完全二叉树的基础上进行了一些元素的调整.下来,让我们来认识一下堆吧.

2.1 堆的概念.

先来看一下官方概念:
如果有一个关键码的集合K = {k0,k1, k2,…,kn-1},把它的所有元素按完全二叉树的顺序存储方式存储在一个一维数组中,并满足:Ki <= K2i+1 且 Ki<= K2i+2 (Ki >= K2i+1 且 Ki >= K2i+2) i = 0,1,2…,则称为 小堆(或大堆)。将根节点最大的堆叫做最大堆或大根堆,根节点最小的堆叫做最小堆或小根堆。

非官方概念回答什么是堆:这也是堆的性质
首先,堆结构就是用数组实现的完全二叉树结构
其次,堆中某个节点的值总是不大于或不小于双亲节点的值.

2.2 堆的存储方式

从堆的概念可以知道,堆是一颗完全二叉树,因此可以采取层次遍历的规则来高效存储,
来看图理解一下:

小堆:节点的值都大于等于其双亲节点的值,按照层次遍历存储.
在这里插入图片描述
大堆:节点的值都小于等于其双亲节点的值,按照层次遍历存储.
在这里插入图片描述

2.3堆的创建

2.3.1 堆的向下调整

现在给你一个序列{ 27, 15, 19, 18, 28, 34, 65, 49, 25, 37 },该怎么将它建成堆呢?
我们先将序列还原成完全二叉树:

在这里插入图片描述

如图:根的左右子树都已经符合了堆的性质:节点的值总是大于或者小于双亲节点的值.所以我们只需要将根节点向下调整到该放的位置就行.
过程(我们这里以小堆为例):
a.用parent标记要调整的节点,用cur标记parent的左孩子.

在这里插入图片描述
child和parent为数组下标,左孩子节点=双亲节点*2+1;
int child=parent * 2+1;

b.判断左孩子是否存在,存在的话进行下面的操作,直到child不存在.
~判断parent的右孩子是否存在,如果存在的话,找到左右孩子中较小的值,用cur进行标记.
~然后用parent存放的值与cur存放的值进行比较,如果array[parent]<array[child],则表示不需要进行调整.
~如果array[parent]>array[child],两个值进行交换.此时,子树可能不满足堆的性质,因此需要继续调整,让parent标记此时的cur位置,cur标记parent的左孩子,重复b步骤.
图形理解如下:

在这里插入图片描述
当child>size的话,说明已经调整好了.

代码实现如下:

  1. public void shiftDown(int parent){
  2. //默认为左孩子
  3. int child=parent*2+1;
  4. //size是有效元素个数.
  5. while (child < size) {
  6. //在这里对右孩子也进行范围判断.如果child+1>size的话会数组小标越界.
  7. if (child + 1 < size && array[child + 1] < array[child]) {
  8. //如果右孩子小于左孩子,将child下标放在右孩子位置.
  9. child += 1;
  10. }
  11. //如果parent处的值大于child处的值,则进行交换.让大的值往下走.
  12. if (array[parent] > array[child]) {
  13. //swap()是交换函数,我会在后面堆模拟实现优先级队列的时候给出的.
  14. swap(parent,child);
  15. //交换完后,将parent放在child位置,再让child放在当前parent的左孩子位置.
  16. parent = child;
  17. child = 2 * parent + 1;
  18. }else {
  19. return;
  20. }
  21. }
  22. }

注意:在调整以parent为根的二叉树时,必须要满足parent的左子树和右子树已经是堆了才可以向下调整。
时间复杂度分析:最差的情况下,从根开始一直比较到叶子节点,比较的次数为完全二叉树的高度,所以时间复杂度为:
在这里插入图片描述

2.3.2 堆的向上调整.

代码实现如下:

  1. public void shiftUp(int child){
  2. int parent=(size-2)/2;
  3. while(child!=0){
  4. if (array[child]<array[parent]){
  5. swap(child,parent);
  6. child=parent;
  7. parent=(child-1)/2;
  8. }else{
  9. return;
  10. }
  11. }
  12. }

2.3.3 堆的创建(对于普通序列的调整)

我们不难发现,上面给的是一个特殊的序列,堆的左右子树都满足堆的性质.而在这个部分,我们要给的是一个普通的序列.
假如我们使用{65, 37, 34, 49, 28, 19, 27, 18, 25, 15}这组序列去创建一个小堆,该怎么做呢?
我们先来将它还原成完全二叉树(图不好看,但是可以说明问题):

在这里插入图片描述

~~如果我们要用向下调整的方法,我们就要让根的左右子树都满足堆的性质.
假如要调整以37为节点的这颗子树,我们发现37的左右子树也不满足条件,
所以我们还要调整以37为根节点的左右子树.让它满足堆的性质.
就这样以此类推,等将65这个根节点的左右子树全部调整完毕后,65就可以向下调整了.
做法:先找到倒数第一个非叶子节点,从该节点开始往前一直到根节点,遇到一个节点,就调用向下调整的方法.

如下图,绿色节点是倒数第一个非叶子节点,蓝色节点是最后一个节点.
倒数第一个非叶子节点刚好是最后一个节点的双亲,
最后一个节点下标为size-1,
那么倒数第一个非叶子节点就是((size-1)-1)/2,即(size-2)/2;
在这里插入图片描述

绿色节点的左右子树都是堆以后,让绿色节点下标-1,到下一个位置,调用向下调整方法.
在这里插入图片描述
在这里插入图片描述在这里插入图片描述

最后当parent来到根节点的位置时,发现他的左右子树都已经是堆了,所以再调用一次向下调整方法,这个非特殊序列就被建成小堆了:

在这里插入图片描述

代码如下:

  1. public MyPriorityQueue(Integer[] arr){
  2. //将arr中的元素拷贝到数组array中
  3. //原因: 因为我们要调用shiftDown方法,而shiftDown中的用的数组是成员变量array,
  4. //所以先要将arr中的内容拷贝到array中.在后面模拟实现部分大家就会懂了.
  5. array=new Integer[arr.length];
  6. for (int i = 0; i < arr.length; i++) {
  7. array[i]=arr[i];
  8. }
  9. size=arr.length;
  10. //找当前完全二叉树中倒数第一个非叶子节点
  11. // 倒数第一个非叶子节点刚好是最后一个节点的双亲
  12. int lastLeafParent=(size-2)/2;
  13. for (int root = lastLeafParent; root>=0 ; root--) {
  14. //向下调整
  15. shiftDown(root);
  16. }
  17. }

这个代码我是在构造方法中实现的,所以只要你创建对象,并且传入一个数组时,方法会被调用:

  1. public static void main(String[] args) {
  2. Integer[] array={65,37,34,49,28,19,27,18,25,15};
  3. MyPriorityQueue mpq=new MyPriorityQueue(array);
  4. }

2.4 堆的插入和删除

2.4.1 插入(包括向上调整)

假如我们现在的堆为下图:

在这里插入图片描述

现在我们要插入一个新的元素10.
先将10放到size的位置,
然后size++,
最后将10向上调整就行.
在这里插入图片描述

向上调整:
a.用child标记要调整的元素.parent标记此元素的双亲.
b.如果 array[child]<array[parent], 则将两个元素互换位置.否则证明已经调整好了,直接return.
c.然后让child走到parent的位置,parent再次标记child的双亲.
循环执行 b c 步骤.直到child=0时,说明child已经到达根节点了,退出循环.

图行演示:
在这里插入图片描述

向上调整代码:

  1. public void shiftUp(int child){
  2. int parent=(size-2)/2;
  3. while(child!=0){
  4. if (array[child]<array[parent]){
  5. swap(child,parent);
  6. child=parent;
  7. parent=(child-1)/2;
  8. }else{
  9. return;
  10. }
  11. }
  12. }

插入元素时的代码:

  1. public boolean offer(Integer e){
  2. if (e==null){
  3. throw new NullPointerException("插入的时候元素为空");
  4. }
  5. array[size]=e;
  6. size++;
  7. //当新元素插入以后,可能会破坏堆的结构.
  8. shiftUp(size-1);
  9. return true;
  10. }

2.4.2 删除

堆的删除肯定删除的是堆顶元素.我们继续以小堆来进行举例.
这个小堆的序列为{15, 18, 19, 25, 28, 34, 27, 49, 65, 28, 37}.我们要删除堆顶的元素,也就是15.
那么底层应该如何实现呢.

如果我们直接删除15这个节点,那么我们要调整的就太多了,问题就不好处理了.
所以我们用另外一种方式:将堆顶和最后位置的元素进行交换,然后size- -就可以删除最后位置元素.
因为删除最后位置元素后,根节点的左右子树结构没有被破坏,还是符合堆的性质,最后再让堆顶元素向下调整即可.
在这里插入图片描述​向下调整:
在这里插入图片描述

代码:

  1. public Integer poll(){
  2. if(isEmpty()){
  3. return null;
  4. }
  5. //因为最后还要返回被删除的元素,所以提前用ret来保存一下.
  6. Integer ret=array[0];
  7. //将堆顶的元素与堆中最后一个元素进行交换
  8. swap(0,size-1);
  9. size--;
  10. //将堆顶的元素往下调整到合适位置.
  11. //0是下标.
  12. shiftDown(0);
  13. return ret;
  14. }

2.5 用堆进行模拟实现优先级队列

这里我只给出代码,具体的解释方法的解释我在其他都解释了
我没有写测试的方法,代码大家可以直接复制到idea中进行测试.
代码:

  1. package demo07PriorityQueue;
  2. //用堆模拟实现优先级队列
  3. public class MyPriorityQueue {
  4. //用来保存数据.
  5. Integer[] array;
  6. //记录当前堆中有效元素个数.
  7. int size;
  8. public MyPriorityQueue(){
  9. //默认容量
  10. array=new Integer[11];
  11. size=0;
  12. }
  13. public MyPriorityQueue(int initCapacity){
  14. //自定义容量
  15. if (initCapacity<1){
  16. throw new IllegalArgumentException("初始容量小于1");
  17. }
  18. array=new Integer[initCapacity];
  19. size=0;
  20. }
  21. //建堆
  22. public MyPriorityQueue(Integer[] arr){
  23. //将arr中的元素拷贝到数组array中
  24. array=new Integer[arr.length];
  25. for (int i = 0; i < arr.length; i++) {
  26. array[i]=arr[i];
  27. }
  28. size=arr.length;
  29. //找当前完全二叉树中倒数第一个非叶子节点
  30. // 倒数第一个非叶子节点刚好是最后一个节点的双亲
  31. int lastLeafParent=(size-2)/2;
  32. for (int root = lastLeafParent; root>=0 ; root--) {
  33. //向下调整
  34. shiftDown(root);
  35. }
  36. }
  37. //向上调整
  38. private void shiftUp(int child){
  39. int parent=(size-2)/2;
  40. while(child!=0){
  41. if (array[child]<array[parent]){
  42. swap(child,parent);
  43. child=parent;
  44. parent=(child-1)/2;
  45. }else{
  46. return;
  47. }
  48. }
  49. }
  50. //向下调整,调整以parent为根的二叉树.
  51. //前提是,必须要保证parent的左右子树已经满足堆的特性.
  52. private void shiftDown(int parent){
  53. //默认为左孩子
  54. int child=parent*2+1;
  55. //当child的值小于size时,只是满足了左孩子在范围内,没有满足右孩子.
  56. while (child<size) {
  57. //在这里对右孩子也进行范围判断.
  58. if (child + 1 < size && array[child + 1] < array[child]) {
  59. //如果右孩子小于左孩子,将child下标放在右孩子位置.
  60. child += 1;
  61. }
  62. //如果parent处的值大于child处的值,则进行交换.让大的值往下走.
  63. if (array[parent] > array[child]) {
  64. swap(parent,child);
  65. //交换完后,将parent放在child位置,在让child放在当前parent的左孩子位置.
  66. parent = child;
  67. child = 2 * parent + 1;
  68. } else {
  69. return;
  70. }
  71. }
  72. }
  73. //让内容交换的方法.
  74. //left和right是数组的下标.
  75. private void swap(int left,int right){
  76. int temp=array[left];
  77. array[left]=array[right];
  78. array[right]=temp;
  79. }
  80. //往堆中插入元素.
  81. public boolean offer(Integer e){
  82. if (e==null){
  83. throw new NullPointerException("插入的时候元素为空");
  84. }
  85. array[size]=e;
  86. size++;
  87. //当新元素插入以后,可能会破坏堆的结构.
  88. shiftUp(size-1);
  89. return true;
  90. }
  91. //删除堆顶元素,并返回堆顶元素的值.
  92. public Integer poll(){
  93. if(isEmpty()){
  94. return null;
  95. }
  96. Integer ret=array[0];
  97. //将堆顶的元素与堆中最后一个元素进行交换
  98. swap(0,size-1);
  99. size--;
  100. //将堆顶的元素往下调整到合适位置.
  101. shiftDown(0);
  102. return ret;
  103. }
  104. //返回堆中元素的个数
  105. public int size(){
  106. return size;
  107. }
  108. public boolean isEmpty(){
  109. return size==0;
  110. }
  111. }

2.6 堆的应用

2.6.1 PriorityQueue的实现

PriorityQueue(优先队列),一个基于优先级堆的无界优先级队列,该优先级使得队列始终按照自然顺序进行排序,队列的头部为最小值
实际上是一个堆(不指定Comparator时默认是小顶堆),通过传入自定义的compara函数可以实现大根堆。 

java内置优先队列的API

  1. PriorityQueue queue = new PriorityQueue(new Comparator<Integer>() {
  2. @Override
  3. public int compare(Integer o1, Integer o2) {
  4. return o1 - o2;
  5. }
  6. });

Lambda表达式写法(推荐使用)

  1. PriorityQueue<Integer> queue = new PriorityQueue<>((o1 , o2) -> o1 - o2); // 小根堆
  2. PriorityQueue<Integer> queue = new PriorityQueue<>((o1 , o2) -> o2 - o1); // 大根堆

2.6.2 堆排序(见堆排序(Heap Sort)实现_EvilChou的博客-CSDN博客

升序排列建大根堆;降序排列建小根堆

2.6.3 Top-K问题

例1.前k个高频元素(小根堆)

概念:求数据结合中前K个最大或者最小的的元素,一般情况下数据量都比较大.
比如:专业前10,世界500强,游戏中全服前100等等.
解决Top-K问题最简单直接的方法就是排序,但是如果数据量非常大,排序就不可取了,最佳的方式就是用堆来解决.
a.用数据集合的前K个元素进行建堆
~前K个最大的元素,建小堆(大堆堆顶元素始终最大)
~前K个最小的元素,建大堆(小堆堆顶元素始终最小)
b.用剩余的N-K个元素依次与堆顶元素进行比较,不满足条件就替换堆顶元素.比较完成之后,堆中剩余的K个元素就是所求的最大或者最小的前K个元素.

 解题思路:

有的同学一想,题目要求前 K 个高频元素,那么果断用大顶堆啊。

那么问题来了,定义一个大小为k的大顶堆,在每次移动更新大顶堆的时候,每次弹出都把最大的元素弹出去了,那么怎么保留下来前K个高频元素呢。

而且使用大顶堆就要把所有元素都进行排序,那能不能只排序k个元素呢?

所以我们要用小顶堆,因为要统计最大前k个元素,只有小顶堆每次将最小的元素弹出,最后小顶堆里积累的才是前k个最大元素。

  1. class Solution{
  2. public int[] topKFrequent(int[] nums, int k) {
  3. Map<Integer, Integer> map = new HashMap<>();
  4. for(int num : nums){
  5. map.put(num, map.getOrDefault(num, 0) + 1);
  6. }
  7. //一:遍历map时,使用entrySet方法
  8. PriorityQueue<Map.Entry<Integer, Integer>> queue = new PriorityQueue<>((o1, 02) -> o1.getValue() - o2.getValue());
  9. for(Map.Entry<Integer, Integer>> entry : map.entrySet()){
  10. //int num = map.getKey(), count = map.getValue();
  11. if(queue.size() == k){
  12. if(queue.peek().getValue() < map.getValue()){
  13. queue.poll();
  14. queue.offer(entry);
  15. }
  16. }else{
  17. queue.offer(entry);
  18. }
  19. }
  20. //建立结果数组的时间复杂度:O(k logk),是一个常数时间复杂度
  21. int[] res = new int[k];
  22. for(int i = 0; i < k; i++){
  23. res[i] = queue.poll().getKey();
  24. }
  25. return res;
  26. //总的时间复杂度O(n logk),空间复杂度O(n)
  27. //建立哈希表的时间复杂度为O(n),而遍历哈希表入堆时间复杂度为O(k)
  28. //哈希表的空间复杂度为O(n),而堆的空间复杂度为O(k)
  29. //二:遍历map时,使用keySet方法
  30. Map<Integer, Integer> map = new HashMap<>();
  31. for(int num : nums){
  32. map.put(num, map.getOrDefault(num, 0) + 1);
  33. }
  34. PriOrityQueue<Integer> queue = new PriorityQueue<>((o1, o2) -> map.get(o1) - map.get(o2));
  35. /**
  36. PriorityQueue类实现了优先队列,默认是一个小根堆的形式,如果要定义大根堆,需要在初始化的时候
  37. 加入一个自定义的比较器
  38. PriorityQueue<Integer> queue = new PriorityQueue<>(new Comparator<Integer>() {
  39. @Override
  40. public int compare(Integer a, Integer b) {
  41. return map.get(a) - map.get(b);
  42. }
  43. });
  44. */
  45. for(Integer key : map.keySet()){
  46. if(queue.size() == k){
  47. if(map.get(queue.peek()) < map.get(key)){
  48. queue.poll();
  49. queue.offer(key);
  50. }
  51. }else{
  52. queue.offer(key);
  53. }
  54. }
  55. int[] res = new int[k];
  56. for(int i = 0; i < k; i++){
  57. res[i] = queue.poll();
  58. }
  59. return res;
  60. /**
  61. //更简洁的写法
  62. int[] res = new int[k];
  63. Map<Integer, Integer> map = new HashMap<>();
  64. for(int num : nums){
  65. map.put(num, map.getOrDefault(num, 0) + 1);
  66. }
  67. PriOrityQueue<Map.Entry<Integer, Integer>> queue = new PriorityQueue<>((o1, 02) -> o1.getValue() - o2.getValue());
  68. for(Map.Entry<Integer, Integer>> entry : map.entrySet()){
  69. queue.offer(entry);
  70. if(queue.size() > k){
  71. queue.poll();
  72. }
  73. }
  74. for(int i = k - 1; i >= 0; i--){
  75. res[i] = queue.poll().getKey();
  76. }
  77. return res;
  78. */
  79. }
  80. }

例2.数组中的第k个最大元素 (小根堆)

  1. class Solution {
  2. public int findKthLargest(int[] nums, int k) {
  3. // 小根堆(默认情况下,PriorityQueue是小堆,如果需要大堆的话,就需要自己去实现一个比较器.)
  4. PriorityQueue<Integer> queue = new PriorityQueue<>();//小根堆
  5. //PriorityQueue<Integer> queue = new PriorityQueue<>((o1, o2) -> o2 - o1); 大根堆
  6. for (int num : nums) {
  7. queue.offer(num);
  8. // 堆中元素多于k个时,删除堆顶元素
  9. if(queue.size() > k){
  10. queue.poll();
  11. }
  12. }
  13. return queue.peek(); // 堆顶元素即为第k个最大元素
  14. /**
  15. PriorityQueue<Integer> queue = new PriorityQueue<>();
  16. for (int num : nums) {
  17. if(queue.size() == k){
  18. if(queue.peek() < num){
  19. queue.poll();
  20. queue.offer(num);
  21. }
  22. }else{
  23. queue.offer(num);
  24. }
  25. }
  26. return queue.peek(); // 堆顶元素即为第k个最大元素
  27. */
  28. }
  29. }

例3.最后一块石头的重量(大根堆)

 本题采用PriorityQueue实现大根堆来解题

  1. class Solution {
  2. public int lastStoneWeight(int[] stones) {
  3. //采用大根堆来实现
  4. PriorityQueue<Integer> queue = new PriorityQueue<>((a, b) -> b - a);
  5. for(int stone : stones){
  6. queue.offer(stone);
  7. }
  8. while(queue.size() > 1){
  9. int a = queue.poll();
  10. int b = queue.poll();
  11. if(a > b){
  12. queue.offer(a - b);
  13. }
  14. }
  15. return queue.isEmpty() ? 0 : queue.poll();
  16. }
  17. }

例4.合并k个升序链表

  1. /**
  2. * Definition for singly-linked list.
  3. * public class ListNode {
  4. * int val;
  5. * ListNode next;
  6. * ListNode() {}
  7. * ListNode(int val) { this.val = val; }
  8. * ListNode(int val, ListNode next) { this.val = val; this.next = next; }
  9. * }
  10. */
  11. class Solution {
  12. public ListNode mergeKLists(ListNode[] lists) {
  13. if(lists == null || lists.length == 0){
  14. return null;
  15. }
  16. //小根堆
  17. PriorityQueue<ListNode> queue = new PriorityQueue<>((o1, o2) -> o1.val - o2.val);
  18. for(ListNode list : lists){
  19. if(list != null){
  20. queue.offer(list);
  21. }
  22. }
  23. ListNode dummy = new ListNode(-1);
  24. ListNode cur = dummy;
  25. while(!queue.isEmpty()){
  26. ListNode head = queue.poll();
  27. cur.next = head;
  28. if(head.next != null){
  29. queue.offer(head.next);
  30. }
  31. }
  32. return dummy.next;
  33. /**
  34. if(lists != null || lists.length == 0){
  35. return null;
  36. }
  37. PriorityQueue<Integer> queue = new PriorityQueue<>((o1, o2) -> o1 - o2);
  38. for(int i = 0; i < lists.length; i++){
  39. while(lists[i] != null){
  40. queue.offer(lists[i].val);
  41. lists[i] = lists[i].next;
  42. }
  43. }
  44. ListNode dummy = new ListNode(-1);
  45. ListNode cur = dummy;
  46. while(!queue.isEmpty){
  47. cur.next = new ListNode(queue.poll());
  48. cur = cur.next;
  49. }
  50. return dummy.next;
  51. */
  52. }
  53. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/277134
推荐阅读
相关标签
  

闽ICP备14008679号