数据结构(双向链表)(C语言)

利用C语言实现双向链表的基本功能: 头文件: //LinkList.c #ifndef _LINKLIST_H #define _LINKLIST_H #define SUCCESS 10000 #define FAILURE 10001 #define TRUE 10002 #define FALSE 10003 typedef int Elemtype; typedef str
相关文章
相关标签/搜索