LeetCode 215. 数组中的第K个最大元素

思路

题目地址:https://leetcode-cn.com/problems/kth-largest-element-in-an-array/

有两种解决思路,一种是最小堆,一种是快排

最小堆

  1. 它是一颗完全二叉树,它可以是空
  2. 树中结点的值总是不大于或者不小于其孩子结点的值
  3. 每一个结点的子树也是一个堆

当父结点的键值总是大于或等于任何一个子结点的键值时为最大堆,当父结点的键值总是小于或等于任何一子节点的键值时为最小堆

PriorityQueue默认为最小堆,改变排序规则为最大堆

public class Demo {

    public static void main(String[] args) {
        PriorityQueue<Integer> minHeap = new PriorityQueue<>();
        minHeap.add(10);
        minHeap.add(5);
        minHeap.add(15);
        minHeap.add(2);
        while (!minHeap.isEmpty()) {
            // 2 5 10 15
            System.out.println(minHeap.poll());
        }
        System.out.println("---");
        PriorityQueue<Integer> maxHeap = new PriorityQueue<>((n1, n2) -> n2 - n1);
        maxHeap.add(10);
        maxHeap.add(5);
        maxHeap.add(15);
        maxHeap.add(2);
        while (!maxHeap.isEmpty()) {
            // 15 10 5 2
            System.out.println(maxHeap.poll());
        }
    }
}

快排

代码

最小堆

public class Solution {

    public int findKthLargest(int[] nums, int k) {
        PriorityQueue<Integer> heap = new PriorityQueue<>();
        for (int n : nums) {
            heap.add(n);
            if (heap.size() > k) {
                heap.poll();
            }
        }
        return heap.poll();
    }

}

参考博客

[1]Java面试总结
[2]https://www.jianshu.com/p/62b651797ad8

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值