题解 | #寻找第K大#

寻找第K大

https://www.nowcoder.com/practice/e016ad9b7f0b45048c58a9f27ba618bf

import heapq
#, heappush
# 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
#
# 
# @param a int整型一维数组 
# @param n int整型 
# @param K int整型 
# @return int整型
#
class Solution:
    def findKth(self , a: List[int], n: int, K: int) -> int:
        # write code here
        h = []

        for i in a:
            heapq.heappush(h, -i)
            
        for i in range(K-1):
            heapq.heappop(h)

        return -heapq.heappop(h)

全部评论

相关推荐

点赞 评论 收藏
分享
重生2012之我是java程序员:换个稍微正式点的照片吧
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务