SkipList学习

结构体定义: //定义key和value的类型 typedef int KeyType; typedef int ValueType;      //定义结点 typedef struct nodeStructure* Node; struct nodeStructure{     KeyType key;     ValueType value;     Node forward[1]; };
相关文章
相关标签/搜索