Exemple #1
0
 public BinaryNode(int initialValue)
 {
     this.Value = initialValue;
     this.Left  = null;
     this.Right = null;
 }
Exemple #2
0
 public BinaryTree(int initialValue)
 {
     this._topNode = new BinaryNode(initialValue);
 }
Exemple #3
0
 public BinaryTree()
 {
     this._topNode = null;
 }