Is there any way I could visualize a binary tree in java and C++? It could be a plugin for eclipse or VC++(although I dont think a plugin would be capable) or, it could be a library that enables you to draw them. I want to do this with the minimum amount of work possible. I can do it now with C++ and Win32 but that isn’t an option because it requires too much time to code the damned thing. I also know that there might not be quite a simple solution to this, but I am looking for the best possible one out there, for both languages. The BST structure I talk of here will be custom, not a library one.
Thanks!
Is there any way I could visualize a binary tree in java and C++?
Share
I think AT&T graphviz and its dot.exe is as easy as it gets to use. You can all it from inside Java if you must.