What is a good open source B-tree implementation in C? [closed]

久未见 提交于 2019-11-28 17:00:54
Paul

Check out QDBM: http://fallabs.com/qdbm/. It's LGPL (can be used in commercial app), implements a disk backed hash and/or B+ tree with arbitrary key/value pairs, and builds on a variety of platforms.

The author of the SQLite implementation has disclaimed copyright. If LGPL is okay, then maybe you could use GNUpdate's implementation?

florin

If LGPL is ok, then Tokyo Cabinet might fit the bill. LGPL allows linking with a non-Free application, without adding any constraints on the distribution of the final product.

Attractive Chaos implement kbtree.h. It's a efficient B-tree library

I came across this - The WB B-Tree Database for SCM, Java, C#, and C that's a GNU package.

Maybe you can considere the berkeley db. It is using a b-tree internally.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!