Example #1
0
 public void Purge()
 {
     key = null;
     left = null;
     right = null;
 }
Example #2
0
 public BinaryTree(object key, BinaryTree left, BinaryTree right)
 {
     this.key = key;
     this.left = left;
     this.right = right;
 }