结构体及链表PPT课件

上传人:re****.1 文档编号:591480749 上传时间:2024-09-17 格式:PPT 页数:21 大小:103KB
返回 下载 相关 举报
结构体及链表PPT课件_第1页
第1页 / 共21页
结构体及链表PPT课件_第2页
第2页 / 共21页
结构体及链表PPT课件_第3页
第3页 / 共21页
结构体及链表PPT课件_第4页
第4页 / 共21页
结构体及链表PPT课件_第5页
第5页 / 共21页
点击查看更多>>
资源描述

《结构体及链表PPT课件》由会员分享,可在线阅读,更多相关《结构体及链表PPT课件(21页珍藏版)》请在金锄头文库上搜索。

1、结构体及链表1结构体类型p先定义结构体类型,再定义结构体类型的变量,再使用变量p结构体类型定义struct student int num;char name20;char sex;float score5;struct date int year, month, day;struct fapiao char khmc40;/客户名称struct date kprq;/开票日期int pzs;/品种数float zje;/总金额char kpr20;/开票人;2结构体类型p结构体类型变量的定义p方式一:struct student int num;char name20;float score

2、5;char sex;struct student stu1, stu2;/变量定义/每个变量占用字节数:4+20+20+1=453结构体类型p方式二:struct dateint year, month, day;struct fapiaochar khmc40;/客户名称struct date kprq;/开票日期int pzs;/品种数float zje;/总金额char kpr20; /开票人fp1, fp2;/定义2个变量p方式三:structint shuh;/书号char shum40;/书名char zuozh40;/作者char chubs20;/出版社int zish;/字

3、数book1, book2;/定义2个变量/只用一次的方式4结构体类型p初始化嵌套的结构体变量#includestruct dateint year, month, day;struct fpchar khmc40;date kprq;int pzs;float zje;char kpr20;void main()fp fp1=“小小公司”, 2014,01,02, 3, 300, “小王”;coutfp1.kprq.yeardata=B;/产生一个新结点/从head开始找到结点C的地址p1(代码略)p2=p1-link;/从结点C的指针域找到结点D的地址p2p1-link=p;/使结点C的指

4、针域指向结点Bp-link=p2;/使结点B指向结点D/如果在第一个结点前插入,则要修改指针head,此插入函数应返回结点类型的指针7结点算法p删除一个结点C/从head找到结点C前结点B的地址p1/找到结点C后结点D的地址p2p1-link=p2;/使结点B指向结点Ddelete p;/回收结点C/如果删除的是第一个结点,也要修改head,应返回结点类型的指针p修改结点数据/找到指定结点,修改数据域,返回类型voidp查找给定结点/查找数据域为给定值的结点,返回结点类型的指针8链表算法p创建链表的函数创建链表,就是逐个产生结点并加入链表;首结点和尾结点需单独处理;使用3个指针,head、p2

5、指向尾结点、p1指向当前结点。/在链尾加入1个结点p1=new node;cinp1-data;p2-link=p1;/可输入一个特殊数据标记创建结束,但要记住释放最后一个结点/此函数返回head指针9链表算法p删除链表的函数可从head开始逐个删除结点;删除当前结点前,要保存指针域的指针,以便删除下一个结点;返回类型void。p输出链表的函数可从head开始,逐个输出结点的数据域中的数据;每次输出后,取出当前结点的指针域的指针,以便输出下一个数据;返回类型void。10程序代码1p学生成绩管理程序实例用结构体链表实现#includestruct student/学生结构体 int num;/

6、学号char name9;/姓名int english;/英语成绩int math;/数学成绩int cpp;/C+成绩student *next;/指针域,指向下一个结点;11程序代码2p创建链表函数student *creat() int n=1;student *head, *p1, *p2;/以下处理第1个结点head=new(student);p1=p2=head;cout输入第1个学生的学号、姓名、英语、数学、C+:n;coutp1-nump1-namep1-englishp1-mathp1-cpp;12程序代码3/以下处理后续结点while(p1-num!=0)n+;p2-nex

7、t=p1;p2=p1;/当前结点为新链尾p1=new(student);cout输入第n个学生的学号、姓名、英语、数学、C+:n;coutp1-nump1-namep1-englishp1-mathp1-cpp;p2-next=NULL; /链尾结点处理delete p1;return head;13程序代码4p输出链表的函数void print(student *head)student *p1;cout链表中资料如下:n;p1=head;if(head!=NULL)cout学号t姓名t英语t数学tC+n;docoutnumtnamet;coutenglishtmatht;coutcppne

8、xt;while(p1!=NULL);14程序代码5p删除链表的函数void delech(student *head) student *p1;while(head)p1=head;head=head-next;delete p1;p查找结点的函数student *search(student *head, int x)student *p1=head;if(!head)coutnum=x)return p1;p1=p1-next;p1=NULL;return p1;15程序代码6p删除结点的函数student *deleno(student *head, int x)student *p1

9、=head, *p2;if(!head)coutnum=x)head=head-next; delete p1; return head;p2=p1-next;while(p2)if(p2-num=x)p1-next=p2-next; delete p2; return head;p1=p2;p2=p1-next;cout链表中无要删的结点xenglish+p1-math+p1-cpp;minsum=maxsum;p2=p3=p1;p1=p1-next;while(p1!=NULL)sum=p1-english+p1-math+p1-cpp;if(summaxsum)p2=p1, maxsum

10、=sum;if(sumnext;cout最高分:numtmaxsum/3.0endl;cout最低分:numtminsum/3.0endl;else cout链表空x;if(search(head, x)deleno(head, x);18约瑟夫环pn=6, m=335421654216542152151119约瑟夫环#includestruct nodeint num;struct node *next;node *creat(int n)/创建环形链表函数node *head, *p2, *p1;head =new(node);p1=p2=head;p1-num=1;for(int i=2;inum=i;p2-next=p1;p2=p1;p2-next=head;return head;20约瑟夫环void main()int n, m, i;node *p, *p1;coutnm;p=creat(n);cout初始链:n;for(i=1;i=n;i+)couti ;cout1)for(i=1;inext;p1-next=p-next;coutnumnext;coutn优胜者:numendl;delete p;当n=10, m=4, 输出:初始链:1 2 3 4 5 6 7 8 9 10出局者:4 8 2 7 3 10 9 1 6优胜者:521

展开阅读全文
相关资源
正为您匹配相似的精品文档
相关搜索

最新文档


当前位置:首页 > 建筑/环境 > 施工组织

电脑版 |金锄头文库版权所有
经营许可证:蜀ICP备13022795号 | 川公网安备 51140202000112号