A Pythonic indexed priority queue.
Project description
A priority queue dictionary maps hashable objects (keys) to priority-determining values. It provides a hybrid dictionary/priority queue API.
The priority queue is implemented as a binary heap of (key, priority value) pairs, which supports:
O(1) search for the item with highest priority
O(log n) removal of the item with highest priority
O(log n) insertion of a new item
Additionally, an index maps elements to their location in the heap and is kept up to date as the heap is manipulated. As a result, pqdict also supports:
O(1) lookup of any item by key
O(log n) removal of any item
O(log n) updating of any item’s priority level
Documentation
Documentation is available at http://pqdict.readthedocs.org/en/latest/.
License
This module 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
Built Distribution
File details
Details for the file pqdict-1.3.0.tar.gz
.
File metadata
- Download URL: pqdict-1.3.0.tar.gz
- Upload date:
- Size: 86.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c4cadf68200f2608f94980a918b556c234a579e540d1f3b81f88dd2644c2d14 |
|
MD5 | 9fb227a1018abc08956bff8c994b6327 |
|
BLAKE2b-256 | d5a4c7426403e99e1061d8745ce0fce2802df9072416844838f715d6cedf3b03 |
File details
Details for the file pqdict-1.3.0-py2.py3-none-any.whl
.
File metadata
- Download URL: pqdict-1.3.0-py2.py3-none-any.whl
- Upload date:
- Size: 8.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8affcb2e5c76f658df4fa871b2be792fdc878697421f3465fe447fe3a674c619 |
|
MD5 | 1061bbfe0873edb34f2a321d6fd91400 |
|
BLAKE2b-256 | 018d0f862b73d8f27052acb96f7f5eee17463972a476c994189513019bb93bad |