LeetCode 215 数组中的第k大元素

2 篇文章 0 订阅
2 篇文章 0 订阅
这篇博客详细介绍了如何使用快速排序和堆排序两种算法在Python中找到列表中的第k大元素。快排方法通过partition函数进行划分,堆排序则利用了Python的heapq库构建最小堆来解决此问题。这两种方法都是高效地解决此类问题的经典算法。
摘要由CSDN通过智能技术生成

思路:快排或者堆

快排:

def findKthLargest(self, nums: List[int], k: int) -> int:
        def partition(nums, left, right):
            pivot = nums[left]
            i, j = left, right
            while i < j:
                while i < j and nums[j] >= pivot:
                    j -= 1
                while i < j and nums[i] <= pivot:
                    i += 1
                nums[i], nums[j] = nums[j], nums[i]
            nums[j], nums[left] = nums[left], nums[j]
            return j
        left, right = 0, len(nums)-1
        while True:
            pivotIndex = partition(nums, left, right)
            if pivotIndex == len(nums)-k:
                return nums[pivotIndex]
            elif pivotIndex < len(nums)-k:
                left = pivotIndex+1
            else:
                right = pivotIndex-1 

堆:

def findKthLargest(self, nums: List[int], k: int) -> int:
    hp = [i for i in nums[:k]]
        heapq.heapify(hp)
        for i in nums[k:]:
            if i > hp[0]:
                heapq.heappop(hp)
                heapq.heappush(hp, i)
        return hp[0]

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值