public BinarySearchTree(T nodeData) { this.NodeData = nodeData; this.RightTree = null; this.LeftTree = null; }