摘要: #include #include #include struct node{ char name[20]; char tel[9]; struct node *next; int num[10];};struct node *head,*p,*q; struct node *create(){// struct node *head,*p,*q; char name[20]; head=NULL; printf("name:"); gets(name); while (strlen(name)!=0) { p=(struct node *)malloc(sizeof(st 阅读全文
posted @ 2013-10-25 13:17 云,不忘初心 阅读(244) 评论(0) 推荐(0) 编辑