VisualC++6.0中《约瑟夫序列》程序注解

VisualC++6.0中《约瑟夫序列》程序注解

ID:38025160

大小:32.00 KB

页数:3页

时间:2019-05-24

VisualC++6.0中《约瑟夫序列》程序注解_第1页
VisualC++6.0中《约瑟夫序列》程序注解_第2页
VisualC++6.0中《约瑟夫序列》程序注解_第3页
资源描述:

《VisualC++6.0中《约瑟夫序列》程序注解》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库

1、#include#include#definelensizeof(structnode)#defineA100#defineB200#defineM20/*初始值*/structnode{intnumber;intcode;structnode*next;};structnode*insert(structnode*tail,intnumber,intcode)/*假设tail就是表尾,返回指向末尾的指针*/{structnode*p0;p0=(struct

2、node*)malloc(len);p0->number=number;p0->code=code;p0->next=NULL;tail->next=p0;returnp0;}structnode*del(structnode*head,int*a)/*删除从tail数起第a个结点,返回下一个结点地址*/{intcount=1;intt;structnode*p0;if(*a==1){t=head->number;while(head->next->number!=t){head=head->n

3、ext;}p0=head->next;head->next=p0->next;*a=p0->code;printf("%d",p0->number);free(p0);}else{while(count!=(*a-1)){head=head->next;count++;}p0=head->next;head->next=p0->next;*a=p0->code;printf("%d",p0->number);free(p0);}returnhead->next;}voidprint(st

4、ructnode*head){structnode*p0=head;while(p0->next!=head){printf("%d%d",p0->number,p0->code);p0=p0->next;}printf("%d%d",p0->number,p0->code);printf("");}voidmain()/*链表使用头结点*/{structnode*tail,*head;intnumber=1;intcode=1;intm=M;intcount=0;/*记录输入人数*

5、/head=tail=(structnode*)malloc(len);tail->code=A;tail->number=B;tail->next=NULL;printf("输入序号以及对应号码,序号为0时结束。");scanf("%d%d",&number,&code);while(number){count++;tail=insert(tail,number,code);scanf("%d%d",&number,&code);}tail->next=head->next;head=he

6、ad->next;printf("序号与密码对应如下:");print(head);while(head->next!=head){m=m%count;head=del(head,&m);count--;}printf("%d",head->number);}

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

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

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