C语言链表的构建、输出、遍历、删除、插入.doc

C语言链表的构建、输出、遍历、删除、插入.doc

ID:52783438

大小:14.50 KB

页数:3页

时间:2020-03-30

C语言链表的构建、输出、遍历、删除、插入.doc_第1页
C语言链表的构建、输出、遍历、删除、插入.doc_第2页
C语言链表的构建、输出、遍历、删除、插入.doc_第3页
资源描述:

《C语言链表的构建、输出、遍历、删除、插入.doc》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库

1、#include#include#defineLENsizeof(structStudent)structStudent{intnum;structStudent*next;};structStudent*creat(){structStudent*p1,*p2,*head;head=NULL;p1=p2=malloc(LEN);scanf("%d",&p1->num);if(p1->num!=0){head=p1;do{p2=p1;p1=malloc(LEN);p2

2、->next=p1;scanf("%d",&p1->num);}while(p1->num!=0);p2->next=NULL;}returnhead;}voidprint(structStudent*head){structStudent*p=head;if(head==NULL)printf("LISTNULL!");elsewhile(p!=NULL){printf("%dt",p->num);p=p->next;}}structStudent*del(structStudent*head,int

3、num){structStudent*p1,*p2;if(head==NULL)printf("LISTNULL!");else{p1=head;while(p1!=NULL&&p1->num!=num)//不可颠倒{p2=p1;p1=p1->next;}if(p1==NULL)printf("Itdoesn'texist!");//不能先判断是否找到该值else{if(p1==head)head=p1->next;elsep2->next=p1->next;free(p1);}}returnhe

4、ad;}structStudent*insert(structStudent*head,intnum){structStudent*p1=head,*p2,*p;while(p1!=NULL&&p1->numnext;}if(p1==head){head=malloc(LEN);head->num=num;head->next=p1;}else{p2->next=p=malloc(LEN);p->num=num;p->next=p1;}returnhead

5、;}voidmain(){structStudent*head;intdelnum,insertnum;printf("Pleaseinputallstudents'numberfromsmalltobig(endwith0):");head=creat();print(head);printf("");printf("Thenumberyouwanttodelete:");scanf("%d",&delnum);head=del(head,delnum);printf("Thenumberyouwa

6、nttoinsert:");scanf("%d",&insertnum);head=insert(head,insertnum);printf("Pleasechecktheresult:");print(head);printf("");}

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。