Tagged Questions
3
votes
4answers
326 views
Does anyone know where I might find a file based multi-way B-Tree Class for c#?
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 ...
2
votes
2answers
119 views
What Tree structure should I use for indexing?
I'm thinking of experimenting with using a tree-structure for indexing as I want to test whether it is faster than my current indexing implementation which is in essence a hash based lookup.
I've ...