Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 246 Bytes

README.md

File metadata and controls

8 lines (6 loc) · 246 Bytes

A thread-safe B-Tree impementation. It supports following operations:-

  • Insert
  • Delete
  • Search
  • Update

The Tree can be instantiated with NewBTree(val) function where val denotes the degree of the Tree. The default value is 10.