码迷,mamicode.com
首页 > 其他好文 > 详细

Kth Largest Element in an Array

时间:2016-04-24 12:48:13      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:

利用最小堆解决,代码如下:

class Solution(object):
    def findKthLargest(self, nums, k):
        """
        :type nums: List[int]
        :type k: int
        :rtype: int
        """
        heap=nums[0:k]
        heapq.heapify(heap)
        l=len(nums)
        for i in xrange(k,l):
           heapq.heappushpop(heap,nums[i])
        return heap[0]

 

Kth Largest Element in an Array

标签:

原文地址:http://www.cnblogs.com/sherylwang/p/5426669.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!