2016年12月30日
摘要: #include "malloc.h" #include "stdio.h" #define LEN sizeof(struct student) typedef struct student { int num; int age; float score; struct student *next; }stu; int n; // 创建动态链表函数 stu *... 阅读全文
posted @ 2016-12-30 23:40 ChaseForFuture 阅读(161) 评论(0) 推荐(0)