public void InsertIntoBST(int value) { _root = InsertIntoBST(_root, value); }
public BinaryTree(int value) { _root = new BinaryNode(value); }