How to use Data Structure (such as Tree,link list) by Python?

Josiah Carlson jcarlson at uci.edu
Tue Nov 2 02:44:31 EST 2004


"ivy" <ivy at doramail.com> wrote:
> 
> Python has built-in list and search tree.
> If you like , you can write it by yourself.

Python does not come with a tree data structure.  It does come with a
'dictionary', which is implemented as a hash table.

 - Josiah




More information about the Python-list mailing list