摘要: 1 #include<stdio.h> 2 #include<stdlib.h> 3 struct Demo 4 { 5 int num; 6 struct Demo * nextList; 7 }; 8 typedef struct Demo LIT; 9 LIT* creatList(void) 阅读全文
posted @ 2020-04-22 18:10 简单记录一下咯 阅读(175) 评论(0) 推荐(0) 编辑