示例#1
0
 public BinaryTree(int root)
 {
     this.Head = new BinaryNode(root);
 }
 public BinaryNode(int value)
 {
     this.Value      = value;
     this.LeftChild  = null;
     this.RightChild = null;
 }