예제 #1
0
 public BTree()
 {
     Root = null;
 }
예제 #2
0
 public BTNode(int val)
 {
     Value = val;
     Left  = null;
     Right = null;
 }