雙循環鏈表的基本操做(不帶頭結點)

Node.h #ifndef NODE_H #define NODE_H #include <stdio.h> #include <stdlib.h> typedef struct NODE { int value; struct NODE *prior, *next; }Node, *DNode; #endif List.h #ifndef LIST_H #define
相關文章
相關標籤/搜索