示例#1
0
 public Tree(Node root)
 {
     Root = root;
 }
示例#2
0
 public Node()
 {
     Left = null;
     Right = null;
 }