摘要: 插入元素:末尾插入, 向上筛选(siftup) 弹出元素:堆顶弹出, 末尾元素充当堆顶, 向下筛选(siftdown) 阅读全文
posted @ 2016-12-03 17:39 小黄人python 阅读(1027) 评论(0) 推荐(0) 编辑
摘要: 1 #!/usr/bin/env python 2 # -*- coding:utf-8 -*- 3 4 #Author: Minion-Xu 5 #list实现优先队列 6 7 class ListPriQueueValueError(ValueError): 8 pass 9 10 class List_Pri_Queue(object): 11 de... 阅读全文
posted @ 2016-12-03 17:25 小黄人python 阅读(1258) 评论(1) 推荐(0) 编辑