在未排序的数组中找到第 k 个最大的元素。请注意,你需要找的是数组排序后的第 k 个最大的元素,而不是第 k 个不同的元素。
示例 1:
输入: [3,2,1,5,6,4] 和 k = 2
输出: 5
示例 2:
输入: [3,2,3,1,2,4,5,5,6] 和 k = 4
输出: 4
说明:
你可以假设 k 总是有效的,且 1 ≤ k ≤ 数组的长度。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/kth-largest-element-in-an-array
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
class Solution:
def partition(self, nums, low, high):
pivot = nums[low]
j = low
for i in range(low+1, high+1):
if (nums[i] > pivot):
nums[i],nums[j+1] = nums[j+1],nums[i]
j += 1
nums[low],nums[j] = nums[j],nums[low]
return j
def findKthLargest(self, nums: List[int], k: int) -> int:
low = 0
high = len(nums) -1
while(low <= high): #边界条件的确定
index = self.partition(nums, low, high) #self 的用法
print(index,nums[index])
if(index == k-1):
return nums[index]
elif(index < k-1):
low = index + 1
else:
high = index - 1
```