range dict is a dict whose key is a range
Project description
rangedict is a dict whose key is a range.
Usage
>>> from rangedict import RangeDict >>> rd = RangeDict() >>> rd[(1, 2)] = 1 >>> rd[(3, 3)] = 3 >>> rd[(5, 7)] = 5 >>> print rd[6] 5 >>> 3 in rd True >>> del rd[(3, 3)] >>> 3 in rd False
Implemented based on red black tree provides an O(logn) complexity for inserting, deleting and finding.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
rangedict-0.1.7.tar.gz
(3.9 kB
view hashes)
Built Distribution
Close
Hashes for rangedict-0.1.7-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89c07948e4330a340833c8f7e4eb9766fceb90e87309fffb1968b4b9d9af7a93 |
|
MD5 | 0d9358c27722c2255d16acea9422e2ea |
|
BLAKE2b-256 | 4552090803323d0c500cca6b855debc0ab9174ceeda3a9b65e488ce2cbd917c5 |