2019年9月14日

c语言动态链表的创建和插入

摘要: #include <stdio.h>#include <malloc.h>#define LEN sizeof(struct student)struct student{ long num; float score; struct student *next;}; int n; int main( 阅读全文

posted @ 2019-09-14 01:38 滴水石川的小白 阅读(1737) 评论(0) 推荐(0)

导航