数据结构中链表C++源代码 时间:2014-02-12 11:25:30 【文件属性】: 文件名称:数据结构中链表C++源代码 文件大小:1KB 文件格式:C 更新时间:2014-02-12 11:25:30 LinkList #include #include typedef int Elemtype; typedef int Status; #define OVERFLOW -2 #define OK 1 #define ERROR 0 typedef struct Lnode { Elemtype data; struct Lnode *next; }Lnode,*LinkList; 立即下载