How can a B-tree node be represented?
- by chronodekar
We're learning B-trees in class and have been asked to implement them in code. The teacher has left choice of programming language to us and I want to try and do it in C#. My problem is that the following structure is illegal in C#,
unsafe struct BtreeNode
{
int key_num; // The number of keys in a node
int[]…