Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kamilturek/btree-py


https://github.com/kamilturek/btree-py

Last synced: 26 days ago
JSON representation

Awesome Lists containing this project

README

        

# In-Memory B+ Tree Implementation

## Usage

```python
from btree import BTree

btree = BTree()
btree.insert(1, "hello")
btree.insert(99, "world")
btree.insert(50, "beautiful")

assert btree.lookup(99) == "world"
```