-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfindKthLargest_215.cpp
39 lines (34 loc) · 1.01 KB
/
findKthLargest_215.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
#include<vector>
#include<iostream>
using namespace std;
class Solution {
public:
int findKthLargest(vector<int>& nums, int k) {
srand(time(nullptr));
return quickSelect(nums, 0, nums.size()-1, nums.size() - k);
}
int quickSelect(vector<int>& nums, int l, int r, int index){
int q = randomPartion(nums, l, r);
if(q == index){
return nums[q];
}
return q < index ? quickSelect(nums, q+1, r, index) : quickSelect(nums, l, q-1, index);
}
int randomPartion(vector<int>& nums, int l, int r){
int i = random() % (r-l+1) + l;
std::swap(nums[i], nums[l]);
return partional(nums, l, r);
}
int partional(vector<int>& nums, int l, int r){
int privot = nums[l];
while (l < r)
{
while(r >= l && nums[r] >= privot) r--;
nums[l] = nums[r];
while(l <= r && nums[l] <= privot) l++;
nums[r] = nums[l];
}
nums[l] = privot;
return l;
}
};