public Tree(Node root)
 {
     Root = root;
 }
 public Node()
 {
     Left = null;
     Right = null;
 }