python 堆和优先队列的使用详解


Posted in Python onMarch 05, 2019

1.heapq

python里面的堆是通过在列表中维护堆的性质实现的。这一点与C++中heap一系列的算法类似,底层是通过堆vector的维护获取堆的性质。

关于二叉树

二叉树的特点:

二叉树是一种存储数据元素的汇集数据结构。

二叉树最重要的性质就是树的高度和树中可以容纳的最大结点个数之间的关系。树的高度类似于表长,是从根结点到其他结点的最大距离。在长为n的表里只能容纳n个结点,而在高为h的二叉树中则可以容纳大约2^h个结点,这是表和树的最大不同点。

一般的元素插入,如果是按线性顺序排列的,那么操作必然需要O(n)的时间(需要对n个数据进行移位处理),要突破这个限制,必须考虑其他数据结构的组织方式。二叉树就是一种高效插入的存储方式。

堆排序利用的是完全二叉树。

python堆的部分API,其他API查阅文档python_heap_API和  heapq的源代码

import heapq
#向堆中插入元素,heapq会维护列表heap中的元素保持堆的性质
heapq.heappush(heap, item)
#heapq把列表x转换成堆
heapq.heapify(x)
#从可迭代的迭代器中返回最大的n个数,可以指定比较的key
heapq.nlargest(n, iterable[, key])
#从可迭代的迭代器中返回最小的n个数,可以指定比较的key
heapq.nsmallest(n, iterable[, key])
#从堆中删除元素,返回值是堆中最小或者最大的元素
heapq.heappop(heap)

1.1.内置类型

从上述源代码可以看出来,heapq使用的内置的小于号,或者类的__lt__比较运算来进行比较。

def heapq_int():
  heap = []
  #以堆的形式插入堆
  heapq.heappush(heap,10)
  heapq.heappush(heap,1)
  heapq.heappush(heap,10/2)
  [heapq.heappush(heap,i) for i in range(10)]
  [heapq.heappush(heap,10 - i) for i in range(10)]
  #最大的10个元素
  print heapq.nlargest(10,heap)
  #输出所有元素
  print [heapq.heappop(heap) for i in range(len(heap))]

1.2.元组类型

元素会默认调用内置比较函数cmp

def heapq_tuple():
  heap = []
  #向推中插入元组
  heapq.heappush(heap,(10,'ten'))
  heapq.heappush(heap,(1,'one'))
  heapq.heappush(heap,(10/2,'five'))
  while heap:
    print heapq.heappop(heap),
  print

1.2.类类型

类类型,使用的是小于号_lt_,当然没有重写但是有其他的比较函数例如:_le_,_gt_,_cmp_,也是会调用的,和小于号等价的都可以调用(测试了gt),具体的这些操作之间的关系我也没有研究过。如果类里面没有重写_lt_,会调用其他的比较操作符,从源代码可以看出来,如果没有_lt_,那么会调用_ge_函数。

所以可以重写上述的那些函数:

class Skill(object):
  def __init__(self,priority,description):
    self.priority = priority
    self.description = description
  def __lt__(self,other):#operator < 
    return self.priority < other.priority
  def __ge__(self,other):#oprator >=
    return self.priority >= other.priority
  def __le__(self,other):#oprator <=
    return self.priority <= other.priority
  def __cmp__(self,other):
    #call global(builtin) function cmp for int
    return cmp(self.priority,other.priority)
  def __str__(self):
    return '(' + str(self.priority)+',\'' + self.description + '\')'

def heapq_class():
  heap = []
  heapq.heappush(heap,Skill(5,'proficient'))
  heapq.heappush(heap,Skill(10,'expert'))
  heapq.heappush(heap,Skill(1,'novice'))
  while heap:
    print heapq.heappop(heap),
  print

所以如果要用到自己定义的类型,可以重写上述函数,就可以使用heapq函数了。

2.PriorityQueue

PriorityQueue的python源代码PriorityQueue 

从源代码可以看出来,PriorityQueue使用的就是heapq来实现的,所以可以认为两者算法本质上是一样的。当然PriorityQueue考虑到了线程安全的问题。

下面给出PriorityQueue的部分API和使用方法。

参考Queue

#向队列中添加元素
Queue.put(item[, block[, timeout]])
#从队列中获取元素
Queue.get([block[, timeout]])
#队列判空
Queue.empty()
#队列大小
Queue.qsize()

2.1.内置类型

直接调用内置函数cmp进行比较

try:
  import Queue as Q #python version < 3.0
except ImportError:
  import queue as Q #python3.*
def PriorityQueue_int():
  que = Q.PriorityQueue()
  que.put(10)
  que.put(1)
  que.put(5)
  while not que.empty():
    print que.get(),
  print

2.2.元组类型

def PriorityQueue_tuple():
  que = Q.PriorityQueue()
  que.put((10,'ten'))
  que.put((1,'one'))
  que.put((10/2,'five'))
  while not que.empty():
    print que.get(),
  print

2.2.自定义类型

class Skill(object):
  def __init__(self,priority,description):
    self.priority = priority
    self.description = description
  #下面两个方法重写一个就可以了
  def __lt__(self,other):#operator < 
    return self.priority < other.priority
  def __cmp__(self,other):
    #call global(builtin) function cmp for int
    return cmp(self.priority,other.priority)
  def __str__(self):
    return '(' + str(self.priority)+',\'' + self.description + '\')'

def PriorityQueue_class():
  que = Q.PriorityQueue()
  skill5 = Skill(5,'proficient')
  skill6 = Skill(6,'proficient6')
  que.put(skill6)
  que.put(Skill(5,'proficient'))
  que.put(Skill(10,'expert'))
  que.put(Skill(1,'novice'))
  while not que.empty():
    print que.get(),
  print

其他的一些方法的使用还是需要参考给出的文档的。

最后一点,让我比较奇怪的是(可能我并没有找到),没有提供像排序函数那样,指定比较方法函数,这点和c++有点区别。

这篇文档参考:参考文档

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python之自动获取公网IP的实例讲解
Oct 01 Python
Python3中的列表,元组,字典,字符串相关知识小结
Nov 10 Python
Python实现霍夫圆和椭圆变换代码详解
Jan 12 Python
Python二叉树定义与遍历方法实例分析
May 25 Python
彻彻底底地理解Python中的编码问题
Oct 15 Python
python绘制已知点的坐标的直线实例
Jul 04 Python
Python空间数据处理之GDAL读写遥感图像
Aug 01 Python
Python3 实现爬取网站下所有URL方式
Jan 16 Python
python函数中将变量名转换成字符串实例
May 11 Python
django queryset 去重 .distinct()说明
May 19 Python
python利用xlsxwriter模块 操作 Excel
Oct 14 Python
Python3使用Selenium获取session和token方法详解
Feb 16 Python
Python两个字典键同值相加的几种方法
Mar 05 #Python
详解python算法之冒泡排序
Mar 05 #Python
Python字符串通过'+'和join函数拼接新字符串的性能测试比较
Mar 05 #Python
Python实现KNN(K-近邻)算法的示例代码
Mar 05 #Python
Python按钮的响应事件详解
Mar 04 #Python
Python中三元表达式的几种写法介绍
Mar 04 #Python
Python生成器的使用方法和示例代码
Mar 04 #Python
You might like
用PHP制作静态网站的模板框架
2006/10/09 PHP
php中让上传的文件大小在上传前就受限制的两种解决方法
2013/06/24 PHP
神盾加密解密教程(三)PHP 神盾解密工具
2014/06/08 PHP
根据地区不同显示时间的javascript代码
2007/08/13 Javascript
jquery validate 自定义验证方法介绍 日期验证
2014/02/27 Javascript
jQuery中replaceAll()方法用法实例
2015/01/16 Javascript
JavaScript实现打字效果的方法
2015/07/10 Javascript
浅谈Jquery中Ajax异步请求中的async参数的作用
2016/06/06 Javascript
video.js使用改变ui过程
2017/03/05 Javascript
使用node.js搭建服务器
2017/05/20 Javascript
看看“疫苗查询”小程序有温度的代码
2018/07/31 Javascript
jQuery序列化form表单数据为JSON对象的实现方法
2018/09/20 jQuery
JQuery animate动画应用示例
2019/05/14 jQuery
原生js基于canvas实现一个简单的前端截图工具代码实例
2019/09/10 Javascript
微信小程序点击view动态添加样式过程解析
2020/01/21 Javascript
vue实现信息管理系统
2020/05/30 Javascript
前端性能优化建议
2020/09/17 Javascript
python开发之list操作实例分析
2016/02/22 Python
python去掉行尾的换行符方法
2017/01/04 Python
python实现傅里叶级数展开的实现
2018/07/21 Python
Python3 jupyter notebook 服务器搭建过程
2018/11/30 Python
pyttsx3实现中文文字转语音的方法
2018/12/24 Python
python3 json数据格式的转换(dumps/loads的使用、dict to str/str to dict、json字符串/字典的相互转换)
2019/04/01 Python
Python3中列表list合并的四种方法
2019/04/19 Python
Python多版本开发环境管理工具介绍
2019/07/03 Python
python itsdangerous模块的具体使用方法
2020/02/17 Python
实现ECharts双Y轴左右刻度线一致的例子
2020/05/16 Python
Win10用vscode打开anaconda环境中的python出错问题的解决
2020/05/25 Python
北美最大的零售退货翻新商:VIP Outlet
2019/11/21 全球购物
不同浏览器创建XMLHttpRequest方法有什么不同
2014/11/17 面试题
shell程序如何生命变量?shell变量是弱变量吗?
2014/11/10 面试题
不错的求职信范文
2014/07/20 职场文书
公证处委托书
2015/01/28 职场文书
2016关于预防职务犯罪的心得体会
2016/01/21 职场文书
导游词之泰山玉皇顶
2019/12/23 职场文书
Java使用Unsafe类的示例详解
2021/09/25 Java/Android