摘要: 内容仅供自己学习使用。 #include<stdio.h>#include<string.h>struct student { int num; char name[20]; char sex; float score; }; void input(struct student *point){ ( 阅读全文
posted @ 2021-08-21 09:39 吃辣的鱼儿 阅读(58) 评论(0) 推荐(0)
摘要: 代码内容源自网络,仅供个人学习使用。 #include<stdio.h> #include<stdlib.h> #include<string.h> struct link *AppendNode(struct link *head);///创建链表,输入数据 void DisplyNode(str 阅读全文
posted @ 2020-07-25 22:50 吃辣的鱼儿 阅读(908) 评论(0) 推荐(0)