forked from kamyu104/LeetCode-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kth-largest-element-in-an-array.cpp
47 lines (44 loc) · 1.54 KB
/
kth-largest-element-in-an-array.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Time: O(n) ~ O(n^2)
// Space: O(1)
class Solution {
public:
int findKthLargest(vector<int>& nums, int k) {
int left = 0, right = nums.size() - 1;
default_random_engine gen((random_device())());
while (left <= right) {
// Generates a random int in [left, right].
uniform_int_distribution<int> dis(left, right);
int pivot_idx = dis(gen);
int new_pivot_idx = PartitionAroundPivot(left, right, pivot_idx, &nums);
if (new_pivot_idx == k - 1) {
return nums[new_pivot_idx];
} else if (new_pivot_idx > k - 1) {
right = new_pivot_idx - 1;
} else { // new_pivot_idx < k - 1.
left = new_pivot_idx + 1;
}
}
}
int PartitionAroundPivot(int left, int right, int pivot_idx, vector<int>* nums) {
auto& nums_ref = *nums;
int pivot_value = nums_ref[pivot_idx];
int new_pivot_idx = left;
swap(nums_ref[pivot_idx], nums_ref[right]);
for (int i = left; i < right; ++i) {
if (nums_ref[i] > pivot_value) {
swap(nums_ref[i], nums_ref[new_pivot_idx++]);
}
}
swap(nums_ref[right], nums_ref[new_pivot_idx]);
return new_pivot_idx;
}
};
// Time: O(n) ~ O(n^2)
// Space: O(1)
class Solution2 {
public:
int findKthLargest(vector<int>& nums, int k) {
nth_element(nums.begin(), next(nums.begin(), k - 1), nums.end(), greater<int>());
return *next(nums.begin(), k - 1);
}
};