public void Insert(int key) { _root = InsertRecursive(_root, key); }
public BinarySearchTree() { _root = null; }