Possible Duplicate:
Software for “relationship graphs”
Is there any good tool for drawing Trees. like trees in Data structure books. I googled but all of the tools like visio, Dia, ... are general tools and drawing trees with them takes much time.
Is there any good tool for drawing Trees. like trees in Data structure books. I googled but all of the tools like visio, Dia, ... are general tools and drawing trees with them takes much time.
| ||||
feedback
|
This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.
|
GraphViz is a processor from text to a picture. You type in code in a text editor, and it generates a tree/graph for you. See also gallery and guide. In the text you write, you specify how the nodes relate to each other (child -> parent), and then graphviz tries to draw it as neatly as possible. | |||
|
feedback
|
|
If you're looking for a tool for drawing graphs (every tree is a graph), then you might check out JGraph. It supports directed and undirected, and has many options for configuration. | |||
|
feedback
|