双循环链表的基本操做(不带头结点)

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
相关文章
相关标签/搜索