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