public BinTree(Object Val, BinTree<Object> Right, BinTree<Object> Left) { this.Val = Val; this.Right = Right; this.Left = Left; }