雙向循環鏈表(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
相關文章
相關標籤/搜索