给定整数数组 nums 和整数 k,请返回数组中第 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
链接:https://leetcode-cn.com/problems/kth-largest-element-in-an-array
class Solution:
def findKthLargest(self, nums: List[int], k: int) -> int:
def findTopKth(low, high):
privot = random.randint(low, high)
nums[privot], nums[low] = nums[low], nums[privot]
i, j = low, low + 1
base = nums[low]
while j <= high:
if nums[j] > base:
nums[i+1], nums[j] = nums[j],nums[i+1]
i += 1
j += 1
nums[i], nums[low] = nums[low], nums[i]
if i == k - 1:
return nums[i]
elif i > k - 1:
return findTopKth(low, i-1)
else:
return findTopKth(i+1, high)
return findTopKth(0, len(nums)-1)
class Solution:
def findKthLargest(self, nums: List[int], k: int) -> int:
sort_num = sorted(nums)
return sort_num[::-1][k-1]