コード例 #1
0
 public void Insert(int key)
 {
     _root = InsertRecursive(_root, key);
 }
コード例 #2
0
 public BinarySearchTree()
 {
     _root = null;
 }