What’s a good and stable C++ tree implementation?

I don’t know about your requirements, but wouldn’t you be better off with a graph (implementations for example in Boost Graph) if you’re interested mostly in the structure and not so much in tree-specific benefits like speed through balancing? You can ’emulate’ a tree through a graph, and maybe it’ll be (conceptually) closer to what you’re looking for.

Leave a Comment