SkipList學習

結構體定義:node //定義key和value的類型 typedef int KeyType; typedef int ValueType;      //定義結點 typedef struct nodeStructure* Node; struct nodeStructure{     KeyType key;     ValueType value;     Node forward[1];
相關文章
相關標籤/搜索