Priority Queue Dictionary (pqdict)

pqdict provides a pure Python indexed priority queue data structure with a dict-like interface. pqdict.PQDict instances map hashable dictionary keys to rank-determining priority keys.

Latest PyPI version CI Build State Number of PyPI downloads

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

Note

Regular iteration is NOT sorted! However, regular iteration methods are non-destructive: they don’t affect the heap. This applies to pq.keys(), pq.values(), pq.items() and using iter():

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']

Note

Only destructive iteration is sorted. Destructive iteration methods return generators that pop items out of the heap, which amounts to performing a heapsort. The destructive iterators are pq.iterkeys(), pq.itervalues(), and pq.iteritems():

for customer in queue.iterkeys():
    serve(customer) # Customer satisfaction guaranteed :)
# queue is now empty

There are also additional convenience functions that use PQDict to order objects in a dictionary.

Module functions

Some additional convenience functions are also 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.

Bitdeli badge

Warning

WARNING: Any dictionary key’s assigned priority key can be changed to a different one (i.e., the mapping is mutable), but for much the same reason that dictionary keys in Python must be immutable objects, priority keys should also be immutable objects (e.g., numbers, strings, tuples, datetime). However, this is not enforced: if you do happen to use mutable objects as priority keys, any modification to those objects could break your priority queue!