예제 #1
0
 public BinaryTree(int data)
 {
     root = new BTNode(data);
 }
예제 #2
0
 public BinaryTree()
 {
     root = null;
 }
예제 #3
0
 public BTNode(int data)
 {
     this.data = data;
     left      = right = null;
 }