Does anyone know where I can find a layered B-Tree class for C #?

I need to implement a multi-level file-based B-Tree class for C #. Similar functions are available for C ++ and C, but I want to use them in C #. It should also be available as source code, which I want to use with some alternative .NET implementations, such as MonoTouch.

If someone knows about a non-file based Multiway b-Tree , then this can easily adapt to crashes to be file based. You make each page / array of nodes of several records an entry / sector in a file. And save them when they change.

Is anyone

+3
source share
4 answers

From what I saw, B-Tree is not widely used in C #, but I could be wrong.

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

I was looking for some things from CodePlex:

+2
source

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

0
source
0

Source: https://habr.com/ru/post/1724100/


All Articles