您当前的位置:首页 > 计算机 > 编程开发 > Python

Python版堆排序算法

时间:09-09来源:作者:点击数:

其他排序算法的Python实现请参考Python版归并排序算法(附Python程序__name__属性用法演示视频)侏儒排序算法原理与Python实现Python版基于递归的冒泡排序算法Python版快速排序算法Python版选择排序算法Python版冒泡法排序算法

本文再给出Python版的堆排序算法,这样的话关于排序算法基本上就全了。本文代码主要借助于标准库heapq中的入堆和出堆函数来实现,属于原地排序,直接影响原来的列表。

from heapq import heappush, heappop

import random

def heapSort(lst):

    temp = []

    for item in lst:

        #入堆

        heappush(temp, item)

    lst.clear()

    for i in range(len(temp)):

        #出堆

        lst.append(heappop(temp))

lst = [random.randint(1,100) for i in range(20)]

print(lst)

heapSort(lst)

print(lst)

方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门