Exemplo n.º 1
0
 public Tree(Node root)
 {
     Root = root;
 }
Exemplo n.º 2
0
 public Node()
 {
     Left = null;
     Right = null;
 }