leetcode 215

Posted 小师叔

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 215相关的知识,希望对你有一定的参考价值。

简介

使用大顶堆 和快排实现
奇怪的是, 使用大顶堆还比快排慢.

code

class Solution {
public:
    int findKthLargest(vector<int>& nums, int k) {
        std::priority_queue<int> big_heap;   // 构造一个默认最大堆
        for(auto it: nums) {
            big_heap.push(it);
        }
        int num = 0;
        while(k){
            k--;
            num = big_heap.top();
            big_heap.pop();
        }
        return num;
    }
};

class Solution {
    public int findKthLargest(int[] nums, int k) {
        Arrays.sort(nums);
        return nums[nums.length-k];
    }
}
class Solution {
public:
    int findKthLargest(vector<int>& nums, int k) {
        sort(nums.begin(), nums.end());
        return nums[nums.size() - k];
        
    }
};

以上是关于leetcode 215的主要内容,如果未能解决你的问题,请参考以下文章

找出数组中第k大的数(时间复杂度分析C++代码实现). TopK in array. ( leetcode - 215 )

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

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

Leetcode 215. 数组中的第K个最大元素 By Python

leetcode215

leetcode 215