I need a simple tree like this, with all the fixings -
type 'a Tree =
| Leaf of 'a
| Branch of 'a Tree list
There's got to be something like this available already with nice add, remove, map, filter, fold functions etc, but I can't find it. I don't even see one from OCaml that I can port... Guess I could write one myself if necessary.
EDIT: Changed structure of tree to be more obvious.
Tree<_>type withofSeqandtoSeqfunctions is sufficient most of the time. You can then leveragemap,reduce, etc from theSeqmodule following this basic sequence:toSeq>Seq.(op)>ofSeq. It also makes it easier to change the order of traversal (DFS, BFS) instead of baking it into each function. – Daniel Aug 10 '12 at 18:21Branch(_, [Empty, Empty, Empty, ...])? – Daniel Aug 10 '12 at 19:54