简体   繁体   中英

Possible to do ordered dictionary in python 2.5 (due to GAE)?

I'm new to Python, and using Google App Engine, which is currently running only Python 2.5. Are there any built-in ways of doing an ordered dictionary, or do I have to implement something custom?

Django provides a SortedDict class, which has the same functionality. If you are using django, you can just use from django.utils.datastructures import SortedDict .

Even if you're not using django, you can still take advantage of that implementation. Just get the datastructures.py file from the django source and save it somewhere importable.

http://code.djangoproject.com/browser/django/trunk/django/utils/datastructures.py

你可以排序一个dict.items()列表(元组)..不能?

OrderedDict is new in 2.7, so no, there's no built-in way to do this - you'll have to implement your own.

Usually, an ordered dictionary is implemented as a dictionary of linked list nodes, linked in traversal order. This should be fairly straightforward to implement yourself.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM