I need to implement a file based multi-way B-Tree Class for c#. There is similar functionality available for C++ and C but I want to use it in C#. It also need to be available as source code as I wish to use with some alternative .NET implementations like MonoTouch.

If anyone knows of a non file based Multiway b-Tree then this could adapted faily easily to be file based. You make each Multiway page/array of nodes a record/sector in the file. And save them when they change.

Anyone?

link|improve this question

62% accept rate
Without the sorcecode req I would say: Use a (clustered) index in SQL. – Henk Holterman Nov 27 '09 at 12:42
1  
I don't want a full SQL implementation just the raw b-tree index code. – AnthonyLambert Nov 27 '09 at 17:35
feedback

4 Answers

From what I've seen the B-Tree isn't widely implemented in C#, but I could be wrong.

However a quick search, turned up this implementation and the comments look positive.

I scrounged up some stuff of CodePlex:

link|improve this answer
1  
Nice find, but after a quick look I don't think it is File-based. – Henk Holterman Nov 27 '09 at 13:02
Sorry :) I don't think you're gonna find one that meets all your requirements, but something might give you a head start... – ParmesanCodice Nov 27 '09 at 13:22
feedback

Create a C# wrapper that calls the C/C++ code?

link|improve this answer
I could do this if all else failed.... I'd rather port a c/C++ to C# if it came to that. – AnthonyLambert Nov 27 '09 at 16:02
feedback

This appears to be what you are looking for: The WB B-Tree Database for SCM, Java, C#, and C

link|improve this answer
NB: The API for this looks very ugly. – Foole Feb 8 '10 at 5:11
feedback

C5 - http://www.itu.dk/research/c5/

link|improve this answer
1  
That contains some binary trees, no (file-based) B-Tree. – Henk Holterman Nov 27 '09 at 13:19
feedback

Your Answer

 
or
required, but never shown

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