1. 首页
  2. 编程语言
  3. C++ 
  4. 数据结构中链表C++源代码

数据结构中链表C++源代码

上传者: 2020-08-18 22:44:54上传 C文件 1.38KB 热度 6次
#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;
用户评论