开发工具:
文件大小: 2kb
下载次数: 0
上传时间: 2011-10-23
详细说明: #define NULL 0 #define LEN sizeof(linkqueue) #include "stdio.h" void clear() { //clrscr(); //gotoxy(16,5); //textcolor(0); } void good_bye() { clear(); printf("\n\n\n\t\t\t程序结束,再见!"); getchar(); } typedef struct node { int data; struct node *next; } linkqueue; linkqueue *creat_rcir(),*report_num(); int people,num; linkqueue *creat_rcir() { int i; linkqueue *head,*p,*rear; head=(struct node*)malloc(LEN); head->data=1; rear=head; for(i=2;i<=people;i++) { p=(struct node*)malloc(LEN); p ->data=i; rear->next=p; rear=p; } rear->next=head; return(head); } linkqueue *report_num(head,m,people) linkqueue *head; int m,people; { linkqueue *p1,*p2; int max,j,count; max=people; printf("\n\n\t\t报数出列的顺序为:"); count=1;j=0; p1=head;p2=p1; do { p2=p1->next; count=count+1; if(count%m==0) { j++; printf("\n\t j=%2d\t no=%2d",j,p2->data); p1->next=p2->next; free(p2); } else p1=p2; } while(j!=max); head=NULL; printf("\n\n\t报数完毕再见!"); return(head); } void main() { linkqueue *hcir,*head; clear(); printf("\n\n\t\t请输入出列报数num="); scanf("%d",&num); printf("\n\n\t\t请输入循环队列总人数people="); scanf("%d",&people); hcir=creat_rcir(); head=report_num(hcir,num,people); } ...展开收缩
(系统自动生成,下载前可以参看下载内容)
下载文件列表
相关说明
- 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
- 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度。
- 本站已设置防盗链,请勿用迅雷、QQ旋风等多线程下载软件下载资源,下载后用WinRAR最新版进行解压.
- 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
- 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
- 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.