Ejemplo n.º 1
0
 public static int Size(GenericTree tree)
 {
     return(GenericNode.Size(tree.Root));
 }
Ejemplo n.º 2
0
 public static void PrintPreOrder(GenericTree tree)
 {
     GenericNode.PrintPreOrder(tree.Root);
 }