摘要: 1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<string.h> 4 5 struct student { 6 char id; 7 struct student* next; 8 }; 9 typedef struct student S; 阅读全文
posted @ 2021-01-26 18:30 泥烟 阅读(112) 评论(0) 推荐(0) 编辑