摘要: #include <stdio.h> #include <stdlib.h> typedef struct node { int name; int number; struct node *next; }person; //初始化循环列表 person * initLink(int n) { pe 阅读全文
posted @ 2020-07-18 19:51 doitjust 阅读(358) 评论(0) 推荐(0) 编辑