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.

link|improve this question

75% accept rate
If you could link to an example screenshot, that would be most awesome. I have a difficult time knowing exactly what you mean by "tree" (mindmap, decision "tree" (flow diagram), etc.). – Hendy Jul 20 '11 at 20:39
feedback

closed as exact duplicate by random Jul 20 '11 at 20:47

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.

2 Answers

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.

link|improve this answer
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.

link|improve this answer
feedback

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