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.
(数组定位第k大的元素)
Note:
You may assume k is always valid, 1 ≤ k ≤ array’s length.
Example:
1. 堆
1 | import heapq |