btree icon indicating copy to clipboard operation
btree copied to clipboard

B-tree implementation for Go

Results 1 btree issues
Sort by recently updated
recently updated
newest added

``` minimumItemsInNode := 1 tree := NewTree(minimumItemsInNode) for i := 1; i < 100; i++ { value := strconv.Itoa(i) tree.Put(value, value) tree.Find(value) } ``` used while creating B-tree of 2-3...