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