| Struct LeadNode { char *Key[]; void *Value_pointer[];//address of Value in NVM int num;//the number of Key contained in the node struct InnerNode *parent;//point to the parent node struct LeadNode *next;//point to the next LeadNode } |
| Struct LeadNode { char *Key[]; void *Value_pointer[];//address of Value in NVM int num;//the number of Key contained in the node struct InnerNode *parent;//point to the parent node struct LeadNode *next;//point to the next LeadNode } |