Esempio n. 1
0
 public void InsertIntoBST(int value)
 {
     _root = InsertIntoBST(_root, value);
 }
Esempio n. 2
0
 public BinaryTree(int value)
 {
     _root = new BinaryNode(value);
 }