Tell me more ×
Programmers Stack Exchange is a question and answer site for professional programmers interested in conceptual questions about software development. It's 100% free, no registration required.

I am trying to draw a expression tree with some algebraic tree. I drew that in paper but now I need to draw that in computer. Is there any program that lets me draw expression tree.

I was trying to use microsoft word but found it extremely painful.

Any suggestions will be highly appreciated.

share|improve this question
Visio would probably be better than Word. – FrustratedWithFormsDesigner Jan 27 '12 at 5:32

1 Answer

up vote 8 down vote accepted

It looks like graphviz may be the answer to your problems. I've only really used it in "batch" mode, to generate GIFs of parse trees and elaborate process flows, but I think you're talking about parse trees when you saw "expression tree".

share|improve this answer
This is way way way better than what I was going to answer with. Here is a cookie. – World Engineer Jan 27 '12 at 6:06
+1, graphviz rules. – Andiaz Jan 27 '12 at 7:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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