A sorted mapping object
Project description
A sorted mapping object.
sortedmap is a python dict api interface to the C++ std::map type. sortedmap implements the full dict object interface with a few differences:
Objects are stored in a red black tree. All keys must be comparable to eachother though they do not need to be hashable. This means all keys must implement at least __lt__ and __eq__.
O(log(n)) lookup, insert, and deletes because of the red- black tree backing. This is worse than dict which offers O(1) lookup, insert, and delete. The C++ implementation offers low constants
popitem accepts a first=True argument which says to pop from the front or the back. dict.popitem pops an abitrary item; however sortedmap pops the first or the last item.
Dependencies
sortedmap has no python package depencencies but requires CPython 2.7 or >=3.4. sortedmap depends on CPython 2 or 3 and some means of compiling C++14. We recommend using g++ to compile sortedmap. Compilation and testing was done with gcc 5.3.0
License
sortedmap is free software, licensed under the GNU Lesser General Public License, version 2.1. For more information see the LICENSE file.
Source
Source code is hosted on github at https://github.com/llllllllll/sortedmap.
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 sortedmap-0.1.0.tar.gz
.
File metadata
- Download URL: sortedmap-0.1.0.tar.gz
- Upload date:
- Size: 19.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a116791e4fe0045a5471cacb3b03a6c52ddbf4fa04f3ac8d1a8abd428755ad96 |
|
MD5 | 553b5d3a57c606d93b8d8cc70f3845d9 |
|
BLAKE2b-256 | 7d39a0df8388fe5d449ae034e4670ec32883a82df31e9b88016e7427cc6bee93 |