A B+tree simple implementation in C
Posted
by
initpy
on Stack Overflow
See other posts from Stack Overflow
or by initpy
Published on 2011-01-04T15:51:19Z
Indexed on
2011/01/04
15:53 UTC
Read the original article
Hit count: 254
Hi guys,
I'm working on a fun project where I need a simple key/value store that uses B+Trees. I studied them some years ago, and to be honest, I don't want to reinvent the wheel, so I'm looking for a simple implementation in C of b+tree that I can just include in my project.
I know of sqlite's, dbm's and tokyocabinet's ones but they're a little too "complicated" for my needs. Is there any (even pedagogical) work on this you can refer me to? Do you have some code to share?
Thanks a lot!
© Stack Overflow or respective owner