215. Kth Largest Element in an Array
Given an integer array nums
and an integer k
, return the kth
largest element in the array.
Note that it is the kth
largest element in the sorted order, not the kth
distinct element.
Can you solve it without sorting?
Example 1:
Example 2:
Solution:
class Solution {
public int findKthLargest(int[] nums, int k) {
PriorityQueue<Integer> pq = new PriorityQueue<Integer>((a, b) -> (b - a));
for (int i = 0; i < nums.length; i++){
pq.offer(nums[i]);
}
for (int i = 0; i < k - 1; i++){
pq.poll();
}
return pq.poll();
}
}
// TC: O(nlogn)
// SC: O(n)
class Solution {
public int findKthLargest(int[] nums, int k) {
Arrays.sort(nums);
return nums[nums.length - k];
}
}
// TC: O(nlogn)
// SC: O(logn)
class Solution {
public int findKthLargest(int[] nums, int k) {
PriorityQueue<Integer> pq = new PriorityQueue<Integer>();
for (int i = 0; i < nums.length; i++){
if (pq.size() < k){
pq.offer(nums[i]);
}else{
if (pq.peek() < nums[i]){
pq.poll();
pq.offer(nums[i]);
}
}
}
return pq.peek();
}
}
// TC: O(n*logn)
// SC: O(k)