!实现循环双链表各类基本运算的算法

/*algo2-5.cpp*/ #include <stdio.h> #include <malloc.h> typedef char ElemType; typedef struct DNode/*定义双链表结点类型*/ {  ElemType data;  struct DNode *prior;/*指向前驱结点*/  struct DNode *next;/*指向后继结点*/ }DLinkL
相关文章
相关标签/搜索