Exemple #1
0
 public BPlusTree(TData[] data)
 {
     this._tree = new CSharpTest.Net.Collections.BPlusTree <TData, int>();
     foreach (TData ele in data)
     {
         this.Add(ele);
     }
 }
Exemple #2
0
 public BPlusTree(TData[] data)
 {
     this._tree = new CSharpTest.Net.Collections.BPlusTree <TData, int>();
 }