vote up 8 vote down star
3

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.

flag

6 Answers

vote up 4 vote down check

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

link|flag
Made this the chosen answer for now. It is a good pointer, but still looking for something more cleanly implemented and abstracted into well encapsulated and maintainable module. – InSciTek Jeff Jan 10 '09 at 22:03
vote up -1 vote down

This page seems to be a good resource.

link|flag
This link refers to Binary Trees, not B-Tree's. – InSciTek Jeff Sep 7 '08 at 14:10
vote up 2 vote down

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|flag
vote up 0 vote down

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

link|flag
vote up 1 vote down

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

link|flag
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

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