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

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