vote up 12 vote down star
6

Why does the C++ STL not provide any "tree" containers, and what's the best thing to use instead?

I want to store a hierarchy of objects as a tree, rather than use a tree as a performance enhancement...

flag

71% accept rate
if it's you the one downvoting all the right answers just seconds of being posted, i suggest to either try to understand them, or rephrase your question. – Javier Oct 15 '08 at 19:03
Who voted down all those good answers? – Martin York Oct 15 '08 at 19:04
1  
Not guilty! Someone else has just downvoted my question! – Roddy Oct 15 '08 at 20:30
The only answer that I saw downvoted (not by me, I should add) was one suggesting the use of boost::tree, which doesn't exist... – Roddy Oct 15 '08 at 20:32
What do you need a tree for? – jalf Nov 15 '08 at 0:40
show 1 more comment

7 Answers

vote up 25 vote down check

There are two reason you could want to use a tree:

You want to mirror a tree like structure problematically:
For this we have boost graph library

Or you want a container that has tree like access characteristics For this we have

Basically the characteristics of these two containers is such that the practically have to be implemented using trees (though this is not actually a requirement).

See also this question: C tree Implementation

link|flag
Thanks. Succint and helpful! – Roddy Oct 15 '08 at 20:34
vote up 15 vote down

Probably for the same reason that there is no tree container in boost. There are many ways to implement such a container, and there is no good way to satisfy everyone who would use it.

Some issues to consider:
- Are the number of children for a node fixed or variable?
- How much overhead per node? - ie, do you need parent pointers, sibling pointers, etc.
- What algorithms to provide? - different iterators, search algorithms, etc.

In the end, the problem ends up being that a tree container that would be useful enough to everyone, would be too heavyweight to satisfy most of the people using it. If you are looking for something powerful, Boost Graph Library is essentially a superset of what a tree library could be used for.

Here are some other generic tree implementations:
- Kasper Peeters' tree.hh
- Adobe's forest
- core::tree

link|flag
vote up 6 vote down

the std::map is based on a red black tree. You can also use other containers to help you implement your own types of trees.

link|flag
It usually uses red-black trees (Its not required to do so). – Martin York Oct 15 '08 at 19:11
GCC uses a tree to implement map. Anyone wanna look at their VC include directory to see what microsoft uses? – J.J. Oct 15 '08 at 21:12
// Red-black tree class, designed for use in implementing STL // associative containers (set, multiset, map, and multimap). Grabbed that from my stl_tree.h file. – J.J. Oct 15 '08 at 21:15
vote up 4 vote down

In a way, std::map is a tree (it is required to have the same performance characteristics as a balanced binary tree) but it doesn't expose other tree functionality. The likely reasoning behind not including a real tree data structure was probably just a matter of not including everything in the stl. The stl can be looked as a framework to use in implementing your own algorithms and data structures.

In general, if there's a basic library functionality that you want, that's not in the stl, the fix is to looks at BOOST.

Otherwise, there's a bunch of libraries out there, depending on the needs of your tree.

link|flag
vote up 4 vote down

The STL's philosophy is that you choose a container based on guarantees and not based on how the container is implemented. For example, your choice of container may be based on a need for fast lookups. For all you care, the container may be implemented as a unidirectional list -- as long as searching is very fast you'd be happy. That's because you're not touching the internals anyhow, you're using iterators or member functions for the access. Your code is not bound to how the container is implemented but to how fast it is, or whether it has a fixed and defined ordering, or whether it is efficient on space, and so on.

link|flag
vote up 2 vote down

Because the STL is not an "everything" library. It contains, essentially, the minimum structures needed to build things.

link|flag
vote up 2 vote down

std::map is usually implemented as a tree.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.