예제 #1
0
파일: RandomTree.cs 프로젝트: Uzere/nlctest
 public void Insert(int key, byte[] data)
 {
     root = RandomTreeNode.Insert(root, key, data);
 }