无序数组求第k大的数 python_【python刷题】寻找数组中第K大/小的数

使用堆

import heapq

def findKthLargest(nums, k):

stack = []

for num in nums:

heapq.heappush(stack, num)

if len(stack) > k:

stack.pop()

return stack[-1]

nums = [6,4,1,3,5,2,7]

print(findKthLargest(nums, 5))

借鉴快速排序的思想

快速排序代码

def quicksort(nums):

l = 0

r = len(nums)-1

_quicksort(nums, l, r)

def _quicksort(nums, left, right):

l = left

r = right

if l < r:

tmp = nums[l]

while l < r:

while l < r and tmp <= nums[r]:

r -= 1

nums[l], nums[r] = nums[r], nums[l]

while l < r and tmp > nums[l]:

l += 1

nums[l], nums[r] = nums[r], nums[l]

_quicksort(nums, left, l)

_quicksort(nums, l+1, right)

nums = [6,2,4,1,2,3,5,2,

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值