您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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.