使用deque模块固定队列长度,用headq模块来查找最大或最小的N个元素以及实现一个优先级排序的队列

时间:2023-11-22 17:57:14

一. deque(双端队列)

1. 使用 deque(maxlen=N)会新建一个固定大小的队列。当新的元素加入并且这个队列已满的时候,最老的元素会自动被移除掉

>>> from collections import deque

>>> q = deque(maxlen=)
>>> q.append()
>>> q.append()
>>> q.append()
>>> q
deque([, , ], maxlen=)
>>> q.append()
>>> q
deque([, , ], maxlen=)
>>> q.append()
>>> q
deque([, , ], maxlen=)

2. 如果你不设置最大队列大小,那么就会得到一个无限大小队列,你可以在队列的两端执行添加和弹出元素的操作

from collections import deque

>>> q = deque()
>>> q.append()
>>> q.append()
>>> q.append()
>>> q
deque([, , ])
>>> q.appendleft()
>>> q
deque([, , , ])
>>> q.pop() >>> q
deque([, , ])
>>> q.popleft()

优点:使用deque在两端插入或删除元素时间复杂度都是 O(1) ,而在列表的开头插入或删除元素的时间复杂度为 O(N) 。

二. headq模块

1. 堆数据结构最重要的特征是 第一个元素 永远是最小的元素;创建一个堆队列,可以使用一个列表[],也可以使用heapify(x)函数

#使用空列表的方法
h = [] heapq.heappush(h, )
heapq.heappush(h, )
heapq.heappush(h, )
heapq.heappush(h, )
print(h)
print(heapq.heappop(h)) #heappop方法会先将第一个元素弹出来,然后用下一个最小的元素来取代被弹出元素,这种操作时间复杂度仅仅是 O(log N),N是堆大小 结果输出如下:
[, , , ] # 使用heapify的方法,转换一个列表为堆排序
h = [, , , , , , ]
heapq.heapify(h)
print(h) 结果输出如下:
[, , , , , , ]

2. heapq 模块有两个函数:nlargest() 和 nsmallest() 可用来查找最大或最小的N个元素

import heapq
nums = [, , , , , -, , , , , ]
print(heapq.nlargest(, nums)) # Prints [, , ]
print(heapq.nsmallest(, nums)) # Prints [-, , ]

3. 两个函数都能接受一个关键字参数key,用于更复杂的数据结构中

import heapq

portfolio = [
{'name': 'IBM', 'shares': , 'price': 91.1},
{'name': 'AAPL', 'shares': , 'price': 543.22},
{'name': 'FB', 'shares': , 'price': 21.09},
{'name': 'HPQ', 'shares': , 'price': 31.75},
{'name': 'YHOO', 'shares': , 'price': 16.35},
{'name': 'ACME', 'shares': , 'price': 115.65}
]
cheap = heapq.nsmallest(2, portfolio, key=lambda s: s['price'])
expensive = heapq.nlargest(2, portfolio, key=lambda s: s['price'])

上面代码在对每个元素进行对比的时候,会以 price 的值进行比较,,如下

>>> expensive
[{'name': 'AAPL', 'shares': , 'price': 543.22}, {'name': 'ACME', 'shares': , 'price': 115.65}]

4. nlargest(), max()以及排序切片的使用场景

1) 当要查找的元素个数相对比较小的时候,函数 nlargest() 和 nsmallest() 是很合适的。

2) 如果你仅仅想查找唯一的最小或最大 (N=1) 的元素的话,那么使用 min() 和max() 函数会更快些。

3) 如果 N 的大小和集合大小接近的时候,通常先排序这个集合然后再使用切片操作会更快点 ( sorted(items)[:N] 或者是 sorted(items)[-N:] )。

5. 使用heapq写一个优先级队列类,并且在这个队列上每次用pop操作都返回一个最高优先级的元素

先写一个PriorityQueue类

import heapq

class PriorityQueue:

    def __init__(self):
self._queue = []
self._index = def push(self, item, priority):
heapq.heappush(self._queue, (-priority, self._index, item)) #把第2个参数的元组加入到self._queue列表中,做为一个列表元素
self._index += def pop(self):
return heapq.heappop(self._queue)[-] #返回-prioriry最小的元组,比如(-7, 3, 'jack'), 然后输出这个元组的最后一个元素。

使用上面PriortyQueeu类的例子1

>>> class Item:
... def __init__(self, name):
... self.name = name
... def __repr__(self):
... return 'Item({!r})'.format(self.name) # '!r' 用于在format函数中,表示应用repr函数表示。
...
>>> Item('foo')
Item('foo')
>>> q = PriorityQueue()
>>> q.push(Item('foo'), ) # 这里的Item('foo')安全可以直接用'foo'来代替,这里只是学习下类以及__repr__()的用法
>>> q.push(Item('bar'), )
>>> q.push(Item('spam'), )
>>> q.push(Item('grok'), )
>>> q.pop()
Item('bar')
>>> q.pop()
Item('spam')
>>> q.pop()
Item('foo')
>>> q.pop()
Item('grok')

说明:

1. 函数__repr__()是用于显示的,如果不定义这个函数,Item('foo')的返回结果类似<__main__.Item object at 0x7fa8e0edceb8>

2. 如果两个有着相同优先级的元素 ( foo 和 grok ),pop 操作按照它们被插入到队列的顺序返回的。

原因是我们在元组中定义了一个self._index变量,当优先级相同时,就比较索引值,小的索引值放在队列前面;当优先级不同时,索引值就不需要比较了。

如果不定义索引值,当两个元素的优先级相同时,就会报错。

一个简化的完整例子2

import heapq

class PriorityQueue:

    def __init__(self):
self._queue = []
self._index = def push(self, item, priority):
heapq.heappush(self._queue, (-priority, self._index, item))
self._index += def pop(self):
return heapq.heappop(self._queue)[-] x = PriorityQueue()
x.push('jack', )
x.push('hong', )
x.push('jin', )
x.push('winnie', ) y = x.pop()
print(y)

输出hong