摘要: 代码展示: //结构体指针实现动态链表 #include<stdio.h> #include<stdlib.h> # define LEN sizeof(struct Student) struct Student{ int num; char name[20]; float score; stru 阅读全文
posted @ 2020-03-17 23:06 kakusan 阅读(537) 评论(0) 推荐(0) 编辑