!實現循環雙鏈表各類基本運算的算法

/*algo2-5.cpp*/ #include <stdio.h> #include <malloc.h> typedef char ElemType; typedef struct DNode/*定義雙鏈表結點類型*/ {  ElemType data;  struct DNode *prior;/*指向前驅結點*/  struct DNode *next;/*指向後繼結點*/ }DLinkL
相關文章
相關標籤/搜索