双向循环链表(C语言)

一、seqlist.h #ifndef __SEQLIST__#define __SEQLIST__ typedef int DataType; typedef struct DCLNode { struct DCLNode* _pNext; struct DCLNode* _pPre; DataType _data; }Node, *PNode; void DCLInit(PNode* ppHe
相关文章
相关标签/搜索