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