摘要: #include <stdio.h> #include <stdlib.h> typedef struct node { char name[20]; struct node *prior, *next; } stud; stud* creat( int n ) { stud *p, *h, *s; 阅读全文
posted @ 2020-11-17 09:39 ziwuxian 阅读(258) 评论(0) 推荐(0) 编辑