[redis] redis系列二:鏈表

redis中鏈表的數據結構定義如下: // 鏈表中的節點 typedef struct listNode { // 節點的前驅 struct listNode *prev; // 節點的後繼 struct listNode *next; // 節點上保存的值 void *value; } listNode; typedef struct listIter
相關文章
相關標籤/搜索