Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/google/btree
BTree provides a simple, ordered, in-memory data structure for Go programs.
https://github.com/google/btree
Last synced: 5 days ago
JSON representation
BTree provides a simple, ordered, in-memory data structure for Go programs.
- Host: GitHub
- URL: https://github.com/google/btree
- Owner: google
- License: apache-2.0
- Created: 2014-07-31T17:56:24.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-08-21T16:46:53.000Z (5 months ago)
- Last Synced: 2025-01-04T11:06:50.959Z (7 days ago)
- Language: Go
- Homepage:
- Size: 62.5 KB
- Stars: 3,987
- Watchers: 80
- Forks: 423
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- my-awesome - google/btree - 08 star:4.0k fork:0.4k BTree provides a simple, ordered, in-memory data structure for Go programs. (Go)
- go-awesome - google/btree - B-tree (Open source library / Data Structure)
README
# BTree implementation for Go
This package provides an in-memory B-Tree implementation for Go, useful as
an ordered, mutable data structure.The API is based off of the wonderful
http://godoc.org/github.com/petar/GoLLRB/llrb, and is meant to allow btree to
act as a drop-in replacement for gollrb trees.See http://godoc.org/github.com/google/btree for documentation.