You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 456 B

123456789101112
  1. # BTree implementation for Go
  2. ![Travis CI Build Status](https://api.travis-ci.org/google/btree.svg?branch=master)
  3. This package provides an in-memory B-Tree implementation for Go, useful as
  4. an ordered, mutable data structure.
  5. The API is based off of the wonderful
  6. http://godoc.org/github.com/petar/GoLLRB/llrb, and is meant to allow btree to
  7. act as a drop-in replacement for gollrb trees.
  8. See http://godoc.org/github.com/google/btree for documentation.