I am trying to construct a general tree. Are there any built in data structures in Python to implement a tree?
How can I implement a tree in Python? Are there any built in data structures in Python like in Java?
|
Python doesn't have the quite the extensive range of "built-in" data structures as Java does. However, because Python is dynamic, a general tree is easy to create. For example, a binary tree might be:
You can use it like this:
|
|||||||||||||||||||
|
|
There aren't trees built in, but you can easily construct one by subclassing a Node type from List and writing the traversal methods. If you do this, I've found bisect useful. There are also many implementations on PyPi that you can browse. If I remember correctly, the Python standard lib doesn't include tree data structures for the same reason that the .NET base class library doesn't: locality of memory is reduced, resulting in more cache misses. On modern processors it's usually faster to just bring a large chunk of memory into the cache, and "pointer rich" data structures negate the benefit. |
|||||||
|
|
I've implemented trees using nested dicts. It is quite easy to do, and it has worked for me with pretty large data sets. I've posted a sample below, and you can see more at Google code
|
|||
|
|
|
you can try
as sugessted here https://gist.github.com/2012250 |
|||
|
|
|
I've published a Python [3] tree implementation on my site: http://www.quesucede.com/page/show/id/python_3_tree_implementation. Hope it is of use, Ok, here's the code:
|
||||
|
|
|
What operations do you need? There is often a good solution in Python using a dict or a list with the bisect module. There are many, many tree implementations on PyPI, and many tree types are nearly trivial to implement yourself in pure Python. However, this is rarely necessary. |
|||
|
|