There's an existing function that ends in:
return dict.iteritems()
that returns an unsorted iterator for a given dictionary. I would like to return an iterator that goes through the items in sorted order. How do I do that?
|
There's an existing function that ends in:
that returns an unsorted iterator for a given dictionary. I would like to return an iterator that goes through the items in sorted order. How do I do that? |
||||
|
|
|
Haven't tested this very extensively, but works in Python 2.5.2.
|
|||||||||||
|
|
Use the
If you want an actual iterator over the sorted results, since
|
|||||||||||
|
|
A dict's keys are stored in a hashtable so that is their 'natural order', i.e. psuedo-random. Any other ordering is a concept of the consumer of the dict. sorted() always returns a list, not a dict. If you pass it a dict.items() (which produces a list of tuples), it will return a list of tuples [(k1,v1), (k2,v2), ...] which can be used in a loop in a way very much like a dict, but it is not in anyway a dict!
The following feels like a dict in a loop, but it's not, it's a list of tuples being unpacked into k,v:
Roughly equivalent to:
|
|||
|
|
Greg's answer is right. Note that in Python 3.0 you'll have to do
as |
|||
|
|
sorted returns a list, hence your error when you try to iterate over it, but because you can't order a dict you will have to deal with a list. I have no idea what the larger context of your code is, but you could try adding an iterator to the resulting list. like this maybe?:
of course you will be getting back tuples now because sorted turned your dict into a list of tuples ex:
say your dict was:
so when you actually iterate over the list you get back (in this example) a tuple composed of a string and an integer, but at least you will be able to iterate over it. |
|||
|
|
|
If you want to sort by the order that items were inserted instead of of the order of the keys, you should have a look to Python's collections.OrderedDict. (Python 3 only) |
|||
|
|
|
In general, one may sort a dict like so:
For the specific case in the question, having a "drop in replacement" for d.iteritems(), add a function like:
and so the ending line changes from
to
or
|
|||
|
|
This method still has an O(N log N) sort, however, after a short linear heapify, it yields the items in sorted order as it goes, making it theoretically more efficient when you do not always need the whole list. |
|||
|
|
|
Assuming you are using CPython 2.x and have a large dictionary mydict, then using sorted(mydict) is going to be slow because sorted builds a sorted list of the keys of mydict. In that case you might want to look at my ordereddict package which includes a C implementation of |
|||
|
|