I am looking for a lean and well constructed open source implementation of a B-tree library written in C. It needs to be under a non-GPL license so that it can be used in a commercial application. Ideally, this library supports the B-tree index to be stored/manipulated as a disk file so that large trees can be built using a configurable (ie: minimal) RAM footprint.

Note: Since there seemed to be some confusion, a Binary Tree and a B-Tree are not the same thing.

link|improve this question

feedback

9 Answers

up vote 1 down vote accepted

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.

link|improve this answer
Nice! - This is a good addition to the list. Thanks! – Tall Jeff Mar 15 at 17:55
On second thought, I think this should also be the preferred answer. – Tall Jeff Mar 15 at 17:57
feedback

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

link|improve this answer
feedback

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.

link|improve this answer
1  
The above link doesn't work – Sandeep Dec 7 '11 at 7:45
It seems to have moved to fallabs.com/tokyocabinet . – florin Jan 27 at 15:42
feedback

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

link|improve this answer
feedback

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

link|improve this answer
feedback

My own implementation is under http://www.die-schoens.de/prg License is Apache. Its disk-based, maps to shared memory where it also can do locking (i. e. multiuser), file format protects against crash etc. All of the above can be easily switched off (compile or runtime if you like). So bare bone would be almost ANSI-C, basically caching in ones own memory and not locking at all. Test program is included. Currently, it only deals with fixed-size fields, but I am working on that...

link|improve this answer
feedback

I'm currently taking a look at this high-concurrency b-tree, released under the new BSD license. Maybe it's worth a look.

link|improve this answer
Nice. Looks like a pretty clean and fairly portable implementation. – Tall Jeff Oct 13 '11 at 13:47
feedback

This page seems to be a good resource.

link|improve this answer
This link refers to Binary Trees, not B-Tree's. – Tall Jeff Sep 7 '08 at 14:10
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.