Skip to main content
. 2020 Dec 2;11(12):1075. doi: 10.3390/mi11121075
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
}