Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kamilturek/btree-py
https://github.com/kamilturek/btree-py
Last synced: 26 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kamilturek/btree-py
- Owner: kamilturek
- Created: 2023-11-11T19:52:15.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2023-11-12T13:35:24.000Z (12 months ago)
- Last Synced: 2024-05-01T16:06:53.240Z (6 months ago)
- Language: Python
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# In-Memory B+ Tree Implementation
## Usage
```python
from btree import BTreebtree = BTree()
btree.insert(1, "hello")
btree.insert(99, "world")
btree.insert(50, "beautiful")assert btree.lookup(99) == "world"
```