欢迎来到天天文库
浏览记录
ID:57687290
大小:11.50 KB
页数:2页
时间:2020-09-01
《c语言单链表的创建.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、#include#include#defineN10typedefstructnode{charname[20];structnode*link;}stud;voidcreat(stud**head)//注意必须是指针的指针才能创建链表{stud*p,*s;inti;*head=(stud*)malloc(sizeof(stud));if(*head==NULL){printf("不能分配内存空间!");exit(0);}(*head)->name[0]=' ';(*hea
2、d)->link=NULL;p=*head;for(i=0;ilink=s;printf("请输入第%d个人的姓名:",i+1);scanf("%s",s->name);s->link=NULL;p=s;}}intmain(){intnumber;stud*head,*p;number=N;creat(&head);p=head;while(p){pr
3、intf("%s",p->name);p=p->link;}return0;}
此文档下载收益归作者所有