Skip to main content

Skip list based sorted collections

Project description

Build status

skiplistcollections is a Python module containing skip list based sorted collections. skiplistcollections is written in Python and works with:

  • CPython 2.6+, 3.2+

  • PyPy 1.9+

Project page on GitHub: https://github.com/jstasiak/skiplistcollections

Project page on PyPI: https://pypi.python.org/pypi/skiplistcollections

Usage

See http://pythonsweetness.tumblr.com/post/45227295342/fast-pypy-compatible-ordered-map-in-89-lines-of-python for details.

>>> from skiplistcollections import SkipListDict
>>> things = SkipListDict(capacity=16)
>>> len(things)
0
>>> things['x'] = 1
>>> 'x' in things
True
>>> len(things)
1
>>> things['g'] = 2
>>> things['z'] = 3
>>> tuple(things.keys())
('g', 'x', 'z')
>>> tuple(things.values())
(2, 1, 3)
>>> tuple(things.items())
(('g', 2), ('x', 1), ('z', 3))
>>> del things['z']
>>> len(things)
2

As you can see, skipcollections.SkipListDict follows Python dict interface quite closely. In fact it inherits MutableMapping Abstract Base Class. You should note that:

  • You need to set the maximum dict size when you create it

  • update method and initializing using another mapping are not supported yet

  • On Python 2 there are items/keys/values (returning tuples) and iteritems/iterkeys/itervalues (returning generators) methods, on Python 3 there are only items/keys/values and they return generators (it should be probably changed to return views for the sake of compatibility)

Changes

0.0.3

  • items(), values(), keys() return views now

0.0.2

  • Improved README

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

skiplistcollections-0.0.3.tar.gz (3.8 kB view hashes)

Uploaded Source

Built Distribution

skiplistcollections-0.0.3-py27-none-any.whl (5.7 kB view hashes)

Uploaded Python 2.7

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page