1

What software could I use to rapidly and easily create trees like this:

Tree of thoughts

Looking for freeware. Please supply screenshots where possible. Mind maps are OK as soon as they look like a tree.

Windows and/or Linux. Web-based is great!

fixer1234
  • 27,064
  • 61
  • 75
  • 116
goodrone
  • 143
  • 5

2 Answers2

9

FreeMind is a premier free mind-mapping software written in Java. (and thus works on all platforms where the Java Runtimes are installed).

alt text

alt text

Gaff
  • 18,569
  • 15
  • 57
  • 68
2

I'm not sure if it's exactly what you are looking for, but Graphviz is good for producing graphs.

enter image description here

It's actually a text format. Here's the code that produced the picture:

digraph SomeTrees {

node  [fontsize=10];

Root -> Item
Root -> "One more item"
"One more item" -> Subitem

Fruit -> Apple
Fruit -> Microsoft
Fruit -> Google

}
Gaff
  • 18,569
  • 15
  • 57
  • 68
dangph
  • 4,603
  • 4
  • 25
  • 31