Esempio n. 1
0
 internal void RemoveRightChild()
 {
     this.RightChild = null;
 }
Esempio n. 2
0
 internal void Remove(BinaryNode node)
 {
     this.RightChild = node;
 }
Esempio n. 3
0
 internal void AddLeftChild(BinaryNode node)
 {
     this.LeftChild = node;
 }
Esempio n. 4
0
 internal void AddRightChild(BinaryNode node)
 {
     this.RightChild = node;
 }
Esempio n. 5
0
 public BinaryTree(BinaryNode root)
 {
     this.Root = root;
 }