C ++ tree drawing

I searched Google for a Tree Visualization Framework or something similar in C ++. And I thought that I did not find anything like it. Is there any (good) structure for drawing a tree (or other data structures)? It should be in C ++.

+4
source share
1 answer

For a simple tree, you can use the standard tree control of your GUI environment (Win32 API, Gtk, Qt, whatever). If you need this to be cross-plaform, you can use wxWidgets or Qt.

If you're looking for something more general, check out GraphViz .

+7
source

All Articles