Tagged Questions

5
votes
2answers
479 views

Looking for a disk-bound b-tree example

Maybe my google-foo just isn't up to snuff, but I'm wanting to play with a b-tree alogrithm that is bound to disk. Since most tutorials and examples are on-memory, they assume random access memory in ...
3
votes
4answers
324 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
1answer
230 views

B-Trees / B+Trees and duplicate keys

I'm investigating the possibility of putting together a custom storage scheme for my application. It's worth the effort of potentially reinventing the wheel, I think, because both performance and ...
2
votes
3answers
573 views

How are B Tree nodes typically represented?

I've been doing some brushing up on my B-Tree and 2-3-4 tree (B tree with order 4), and I'm attempting to implement this in C#. My question to you is, given that a B-Tree node can contains N-1 number ...
1
vote
1answer
175 views

disk access using a b-tree indexer

iv'e implemented a B+tree , my leaf nodes point to start of line(record) positions in a CSV file , my question is : my tree is designed to except a tree - ORDER value i.e. ( The number of Pointers ...
1
vote
2answers
227 views

C# generic B+tree

I'm implementing a B+tree using C#. Now as i understand it, a tree node should hold a number of (order - 1) keys, and order number of pointers to records or other nodes, i.e., only the leaf nodes ...
1
vote
2answers
623 views

File system based B+ Tree implementation in c#

Is there any file system based B+ Tree implementation in c#(open source). I have found some projects, but those are not file(disk) based implementation. I am specifically looking for file system based ...