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