i am having a bunch of nodes holding some data . this can be considered as leaf nodes. I want to build an ISAM tree over these nodes. Is there a standard way of creating the non leaf nodes of an ISAM tree /B plus tree / any tree for that matter. How to implement the tree structure.
Constraints: The height of the tree cannot be assumed. all the non leaf nodes should be full except the rightmost one.
I am planning on using a list structure to hold the key-value and node-index.
Thanks