kth_largest_element
kth_largest_element.py 源码
from typing import List
# 数组中的第k大元素
class Solution:
# 排序
def findKthLargest_1(self, nums: List[int], k: int) -> int:
return sorted(nums)[len(nums) - k]
# 使用一个堆
def findKthLargest_2(self, nums: List[int], k: int) -> int:
pass
你可能感兴趣的文章
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦