Package kilim.examples
Class Tree
- java.lang.Object
-
- kilim.examples.Tree
-
public class Tree extends java.lang.ObjectThis example illustrates two 'generators' that walk a tree, one in pre-order and another in post-order. A generator is an iterator that generates a value (in this case the nodes of the tree) each time its execute() method 'yields' a value. Also, @see kilim.examples.Fib
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidmain(java.lang.String[] args)
-