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.
Example 1:
Example 2:
Note: You may assume k is always valid, 1 ≤ k ≤ array's length.
解题要点:
用priority queue来做,保持pq的size为k,如果一旦大于k,将顶层poll出去。最后返回pq.poll()顶层的值。
Python:
Java:
Last updated
Was this helpful?