摘要: c语言实现的双链表结构,包括插入,查找,删除,清空,销毁等基本操作 代码如下: #include<stdio.h> #include<stdlib.h> typedef struct student { char name[10]; int age; }student; typedef studen 阅读全文
posted @ 2021-04-05 17:35 云雨归海 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 包括初始化,创建,查询,长度,删除,清空,销毁等操作 代码如下: #include<stdio.h> #include<stdlib.h> //定义单链表的数据类型 typedef struct book { char name[10]; char code[10]; float price; }b 阅读全文
posted @ 2021-04-05 16:30 云雨归海 阅读(199) 评论(0) 推荐(0) 编辑