c语言建立输出插入删除修改功能的单项动态链表

c语言建立输出插入删除修改功能的单项动态链表

ID:9409011

大小:27.50 KB

页数:6页

时间:2018-04-30

c语言建立输出插入删除修改功能的单项动态链表_第1页
c语言建立输出插入删除修改功能的单项动态链表_第2页
c语言建立输出插入删除修改功能的单项动态链表_第3页
c语言建立输出插入删除修改功能的单项动态链表_第4页
c语言建立输出插入删除修改功能的单项动态链表_第5页
资源描述:

《c语言建立输出插入删除修改功能的单项动态链表》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库

1、C语言链表类题目写函数一个有三名学生数据的,有建立输出插入删除修改功能的单项动态链表,很全面,各种测试都试过了,环境VC6.0结构体为学号成绩#include#include#includestructStudent{longnum;floatscore;structStudent*next;structStudent*pre;};intn=0;structStudent*create(void){structStudent*head;structStudent*tail;struct

2、Student*pre;structStudent*p;head=NULL;pre=NULL;p=(structStudent*)malloc(sizeof(structStudent));printf("请输入用户名和得分:");scanf("%ld%f",&p->num,&p->score);if(0==p->num){returnNULL;}while(0!=p->num){n++;if(NULL==head){head=p;tail=p;pre=NULL;tail->next=NULL;}else{pre=tail;tail->n

3、ext=p;tail=p;}p=(structStudent*)malloc(sizeof(structStudent));printf("请输入用户名和得分:");scanf("%ld%f",&p->num,&p->score);}if(NULL!=pre){tail->next=NULL;}returnhead;}voidprint(structStudent*head){structStudent*p=head;if(NULL==p){printf("该链表中还没有数据");}while(p!=NULL){printf("%ld

4、t%.3f",p->num,p->score);p=p->next;}}structStudent*del(structStudent*head,longnum){structStudent*p1=head;structStudent*p2=head;if(NULL==head){returnNULL;}if(NULL==head->next){if(num==head->num){n--;returnNULL;}else{returnhead;}}if(num==head->num){n--;head=head->next;retur

5、nhead;}if(NULL==head->next->next){if(num==head->next->num){n--;head->next=NULL;returnhead;}}p1=head->next;while(p1!=NULL){if(num==p1->num){n--;if(NULL==p1->next){p2->next=NULL;}else{p2->next=p1->next;}}p1=p1->next;p2=p2->next;}returnhead;}structStudent*alter(structStudent*h

6、ead,longnum,floatscore){structStudent*p=head;while(p!=NULL){if(num==p->num){p->score=score;}p=p->next;}returnhead;}structStudent*insert(structStudent*head,longnum,floatscore){structStudent*p1=head;structStudent*p2=head;structStudent*p;p=(structStudent*)malloc(sizeof(structS

7、tudent));p->num=num;p->score=score;if(NULL==head){head=p;head->next=NULL;returnhead;}if(NULL==head->next){if(num>=head->num){head->next=p;p->next=NULL;returnhead;}else{p->next=head;head=p;returnhead;}}if(numnum){p->next=head;head=p;returnhead;}p1=head->next;while(p1!

8、=NULL){if(num>=p2->num){if(num<=p1->num){p->next=p1;p2->next=p;}else{if(NULL==p1->

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

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

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