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 of items and N subtrees, what is the typical representation for one of these nodes? Is it an array, series of linked-lists, or something I ve not considered?
What is the use of default keyword in C#? Is it introduced in C# 3.0 ?