摘要: #开始 · 简单的创建链表 #代码 1 #include<conio.h> 2 #include<stdio.h> 3 #include<stdlib.h> 4 5 struct Str 6 { 7 char name[100]; 8 int sex; 9 int id; 10 Str * next 阅读全文
posted @ 2018-09-07 09:28 Startu 阅读(174) 评论(0) 推荐(0)