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