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