热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

pythonheapq有序队列

python库heapq算法本例是heapq的简易用法,heapq默认建立了小根堆h[]heappush(h,(5,'writecode'))



python库 heapq算法
本例是heapq的简易用法, heapq默认建立了小根堆

>>> h = []
>>> heappush(h, (5, 'write code'))
>>> heappush(h, (7, 'release product'))
>>> heappush(h, (1, 'write spec'))
>>> heappush(h, (3, 'create tests'))
>>> heappop(h)
(1, 'write spec')

本例中展示了heapq有序队列使用自定义类对象时的操作. 注意自定义类实现__cmp__即可. 注意__cmp__的符号顺序


  • __cmp__比较为小于号时, 建立大根堆
  • __cmp__比较为大于号时, 建立小根堆

import heapq
class MyObj:
def __init__(self, x, y):
self.x = x
self.y = y
def __cmp__(self, other):
return (self.x*10+self.y) > (other.x*10+other.y)
class Solution(object):
def findLadders(self, beginWord, endWord, wordList):
"""
:type beginWord: str
:type endWord: str
:type wordList: List[str]
:rtype: List[List[str]]
"""
q = []
heapq.heapify(q) # 列表为空时不用这么做

# push操作
heapq.heappush(q, MyObj(4, 3))
heapq.heappush(q, MyObj(1, 2))
heapq.heappush(q, MyObj(2, 1))
while q:
# peek操作, 列表头就是堆顶
print(q[0].x, q[0].y)
# pop操作
next_item = heapq.heappop(q)
print(next_item.x, next_item.y)


推荐阅读
author-avatar
小小的梦想123
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有