leetcode215

Posted AsenYang

tags:

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

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

 

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

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

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

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

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

leetcode215

leetcode 215