Exemplo n.º 1
0
 public void SetRight(BinTreeNode <T> right)
 {
     this.right = right;
 }
Exemplo n.º 2
0
 public BinTreeNode(BinTreeNode <T> left, T info, BinTreeNode <T> right)
 {
     this.info  = info;
     this.left  = left;
     this.right = right;
 }
Exemplo n.º 3
0
 public void SetLeft(BinTreeNode <T> left)
 {
     this.left = left;
 }
Exemplo n.º 4
0
 public BinTreeNode(T info)
 {
     this.info  = info;
     this.left  = null;
     this.right = null;
 }