A dictionary-like indexed priority queue
Project description
This module provides a class pqdict.PQDict for an indexed priority queue that exposes a dictionary interface. A priority queue dictionary maps hashable dictionary keys to rank-determining priority keys.
What is an “indexed” priority queue?
A priority queue is an abstract data structure that allows you to serve or retrieve items in a prioritized fashion. A vanilla priority queue lets you insert elements with priorities, and remove or peek at the top priority element.
An enhancement to the basic priority queue interface is to let you randomly access, insert, remove and/or alter the priority of any existing element in the queue. An indexed priority queue does these operations efficiently.
The queue is implemented as a binary heap (using a python list), which supports the standard:
O(1) access to the top priority element
O(log n) removal of the top priority element
O(log n) insertion of a new element
In addition, an internal dictionary or “index” maps elements to their position in the heap. This index is synchronized with the heap as the heap is manipulated. As a result, PQDict also supports:
O(1) lookup of an arbitrary element’s priority key
O(log n) removal of an arbitrary element
O(log n) updating of an arbitrary element’s priority key
Why would I want something like that?
Indexed priority queues can be used to drive simulations, priority schedulers, and optimization algorithms, merge of streams of prioritized data, and other applications where priorities of already enqueued items may frequently change.
Usage
By default, PQDict uses a min-heap, meaning smaller priority keys give an item higher priority. Use PQDict.maxpq() to create a max-heap priority queue.
from pqdict import PQDict
# same input signature as dict
pq = PQDict(a=3, b=5, c=8)
pq = PQDict(zip(['a','b','c'], [3, 5, 8]))
pq = PQDict({'a':3, 'b':5, 'c':8})
# add/update items
pq['d'] = 6.5
pq['e'] = 2
pq['f'] = -5
# or more stringently
pq.additem('d', 15)
pq.updateitem('c', 1)
pq.additem('c', 4) # KeyError
pq.updateitem('x', 4) # KeyError
# get an element's priority key
print 'f' in pq # True
print pq['f'] # -5
# remove elements
print pq.pop('f') # -5
print 'f' in pq # False
del pq['e']
print pq.get('e', None) # None
# peek at the top priority item
print pq.top() # 'c'
print pq.topitem() # ('c', 1)
# Now, let's do a manual heapsort...
print pq.popitem() # ('c', 1)
print pq.popitem() # ('a', 3)
print pq.popitem() # ('b', 5)
print pq.popitem() # ('d', 6.5)
# and we're empty!
pq.popitem() # KeyError
queue = PQDict({'Alice':1, 'Bob':2})
for customer in queue:
serve(customer) # Bob may be served before Alice!
>>> PQDict({'a': 1, 'b': 2, 'c': 3, 'd': 4}).keys()
['a', 'c', 'b', 'd']
for customer in queue.iterkeys():
serve(customer) # Customer satisfaction guaranteed :)
# queue is now empty
Module functions
Some functions are provided in addition to the PQDict class.
pqdict.sort_by_value is a convenience function that returns a heapsort iterator over the items of a mapping. Generator equivalent of sorted(mapping.items(), key=itemgetter(1), reverse=reverse).
pqdict.nsmallest and pqdict.nlargest work just like the same functions in heapq but act on dictionaries and dict-like objects instead of sequences, sorting by value:
from pqdict import nlargest
billionaires = {'Bill Gates': 72.7, 'Warren Buffett': 60.0, ...}
top10_richest = nlargest(10, billionaires)
pqdict.consume consumes the items from multiple priority queue dictionaries into a single sorted output stream:
pqA = PQDict(parse_feed(urlA))
pqB = PQDict(parse_feed(urlB))
pqC = PQDict(parse_feed(urlC))
aggregator = pqdict.consume(pqA, pqB, pqC)
for entry, date in aggregator:
print '%s was posted on %s' % (entry, date)
...
License
This module was written by Nezar Abdennur and is released under the MIT license. The augmented heap implementation was adapted from the heapq module in the Python standard library, which was written by Kevin O’Connor and augmented by Tim Peters and Raymond Hettinger.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pqdict-0.5.tar.gz
.
File metadata
- Download URL: pqdict-0.5.tar.gz
- Upload date:
- Size: 544.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ef51848a71133e423f4c297c58309885162693f310587cd2c72ac488593e3d87 |
|
MD5 | 4b524ddf45e336419bac535de12c01a8 |
|
BLAKE2b-256 | f2482816315602a39c11ca46d55212047d8c115ed3e3af5927e262f781e18d2b |