Python has an ordered dictionary, what about an ordered set?
|
|
There is an ordered set recipe for this which is referred to from the Python Documentation. This runs on Py2.6 or later and 3.0 or later without any modifications. The interface is almost exactly the same as a normal set, except that initialisation should be done with a list.
|
|||||||||
|
An ordered set is functionally a special case of an ordered dictionary.The keys of a dictionary are unique. Thus, if one disregards the values in an ordered dictionary (e.g. by assigning them As of Python 3.1 there is
|
|||||||||||||||||
|
|
There is a simpler function achieving an OrderedList, provided in the bottom of the link, and the function author said that "the following simpler function runs 4 times faster":
|
|||||
|
|
For many purposes simply calling sorted will suffice. For example
If you are going to use this repeatedly, there will be overhead incurred by calling the sorted function so you might want to save the resulting list, as long as you're done changing the set. If you need to maintain unique elements and sorted, I agree with the suggestion of using OrderedDict from collections with an arbitrary value such as None. |
|||||
|
|
There are four kinds of ordering one might want, I believe:
I believe collections.OrderedDict gets you #4. Or you could remove a key and re-add it, for #3. For #1, you probably should check into a red-black tree or treap:
Red-Black trees have low variability in operation times (so might be better for interactive applications), but aren't as fast as treaps on average (which might be better for batch processing - treaps don't reorganize themselves often making them fast on average, but when they do reorganize it might take a relatively long while). Both of these are established data structures with implementations in many languages. |
|||
|