Class Tree

java.lang.Object
kilim.examples.Tree

public class Tree extends Object
This 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
  • Field Details

  • Constructor Details

  • Method Details

    • main

      public static void main(String[] args)