1. 首页
  2. 服务器应用
  3. VPN
  4. 数据结构C语言版单链表源代码.docx

数据结构C语言版单链表源代码.docx

上传者: 2020-12-12 10:45:41上传 DOCX文件 16.69KB 热度 11次
/* 单链表的各种操作 */ #include #include #define null 0 typedef int ElemType; /* 字符型数据 */ struct LNode { ElemType data; struct LNode *next; }; void setnull(struct LNode *p; int length (st
下载地址
用户评论