雙鏈表的基本運算

代碼:spa #include<stdio.h> #include<malloc.h> typedef char ElemType; typedef struct DNode { ElemType data; struct DNode *prior; struct DNode *next; }DLinkList; //初始化 void InitList(DLinkList * &L) {
相關文章
相關標籤/搜索