public BinarySearchTree()
 {
     root  = null;
     count = 0;
 }
 public int CompareTo(BinarySearchTreeNode <T> other)
 {
     return(data.CompareTo(other.data));
 }