Example #1
0
 public void InsertIntoBST(int value)
 {
     _root = InsertIntoBST(_root, value);
 }
Example #2
0
 public BinaryTree(int value)
 {
     _root = new BinaryNode(value);
 }