求用C语言编写的约瑟夫环问题

最好有注释谢谢... 最好有注释
谢谢
展开
 我来答
wofeilu
2006-10-25 · 超过13用户采纳过TA的回答
知道答主
回答量:36
采纳率:0%
帮助的人:0
展开全部
2.有n个人围成一圈,顺序排号。从第一个人开始报数(从1到3报数),凡报到3的人退出圈子,问最后留下的是原来第几号的那位。

#include<stdio.h>
#include<malloc.h>
#define Namelength 10
typedef struct CLNode{
char*name;
int ID;
int pastword;
struct CLNode *next;
}child,*ptrchild;
ptrchild CreateCList(int n)
{int i;
ptrchild p,head,rear;
printf("please input the children information:");
rear=head=(ptrchild)malloc(sizeof(child));
rear->next=head;

for(i=0;i<n;i++)
{getchar();
p=(ptrchild)malloc(sizeof(child));
p->ID=i+1;
p->name=(char*)malloc(Namelength*sizeof(char));
gets(p->name);
scanf("%d",&(p->pastword));
rear->next=p;
rear=p;
}
rear->next=head;
return head;
}

Joshpus(ptrchild head,int m)
{ptrchild p,q;int i=0;
p=head;
while(head->next!=head)
{while(i<m)
{q=p;
p=p->next;
if(p==head){q=head;p=p->next;}
i++;
}
printf("\nID:%d Name:%s",p->ID,p->name);
q->next=p->next;
m=p->pastword;
i=0;
free(p);
p=q;
}
printf("\n");
}

main()
{ptrchild CL;
int n,m;
printf("please input the number of children:");
scanf("%d",&n);
CL=CreateCList(n);
printf("please input the initial value of m:");
scanf("%d",&m);
Joshpus(CL,m);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
heavencloud
2006-10-24 · TA获得超过105个赞
知道小有建树答主
回答量:72
采纳率:100%
帮助的人:32.8万
展开全部
呵呵 长见识了

约瑟夫环
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
依旧飘流
2006-10-24 · TA获得超过985个赞
知道小有建树答主
回答量:623
采纳率:0%
帮助的人:241万
展开全部
约瑟夫环?
有没有搞错?
这么专业的问题,能听说过的人都不多的
你不给分就想要代码?
我有个大学同学就是搞这方面的,他有很多关于这些的代码
(不过不是C 的,哈哈)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式