public void InsertRight(BinaryTreeNode right)
 {
     Right = right;
 }
 public void InsertLeft(BinaryTreeNode left)
 {
     Left = left;
 }