215. Kth Largest Element in an Array
Find the kth largest element in an unsorted array. Note that it is the kth largest element in the sorted order, not the kth distinct element.
For example,
Given [3,2,1,5,6,4] and k = 2, return 5.
Note:
You may assume k is always valid, 1 ≤ k ≤ array’s length.
代码
class Solution {
public:
int findKthLargest(vector<int>& nums, int k) {
int size = nums.size();
if (size == 0 || k >size) return -1;
nth_element(nums.begin(), nums.end() -k, nums.end()); // since the element i want is in nums.end() -k position
return nums[size-k];
}
};
本文介绍了一种使用C++实现的高效算法,该算法能在未排序数组中找到第K大的元素。通过使用nth_element标准库函数,算法可以将查找的时间复杂度降低到接近线性。文章还提供了一个简单的示例来展示如何应用此方法。
887

被折叠的 条评论
为什么被折叠?



