1. 首页
  2. 课程学习
  3. 软件测试
  4. 数据结构c语言 单链表源代码.doc

数据结构c语言 单链表源代码.doc

上传者: 2020-12-12 10:43:57上传 DOC文件 15.72KB 热度 13次
/*单链表的各种操作*/ #include > #include > #define null 0 typedef int ElemType; /* 字符型数据*/ struct LNode { ElemType data; struct LNode *next; }; void setnull(struct LNode *p; int length (struct LNode *p; Elem
用户评论