一道C编程问题(高手请进!!!)

有n个数按1,2,3,4,5,6...n排成一圈,从1开始按顺序将其标记为1,2..m,1,2..m,...n, (n>m)将标记为m的数取出不放回数列,后继续按1,2..m标记下去,直到全部取出为止.要求输入n,m的值,求m的输出数列.

eg:
输入:
13 2
10 3
5 1
6 3
输出
2 4 6 8 10 12 1 5 9 13 7 3 11
3 6 9 4 8 5 2 7 1
1 2 3 4 5
3 1 5 2 4

#include <stdio.h>
#include <malloc.h>
#include <memory.h>
//pLeft长度固定为N, 表示队伍中留下人的位置.nLeave是离开的人数, 判断结束
//输出是依次从队伍中离开的人的序号.
int fun(unsigned char *pLeft, int N, int *nLeave, int m, int nStart)
{
int nCount=0,nPoint=nStart;
if(pLeft[nPoint]==1)
nCount++;
while(nCount<m)
{
nPoint=nPoint%N+1;
if(pLeft[nPoint]==1)
nCount++;
}
(*nLeave)++;
pLeft[nPoint]=0;
return nPoint;
}

void main(int argc, char *argv[])
{
int n=0,m=0,nLeave=0,nStart=1;
printf("输入 人数n,上限m.\n");
scanf("%d,%d",&n,&m);
unsigned char *pLeft=(unsigned char *)calloc(n+1,sizeof(char));
memset(pLeft,1,(n+1)*sizeof(char));
while(nLeave<n)
printf("%d\t",nStart=fun(pLeft, n, &nLeave, m, nStart));
free(pLeft);
}

---------输出,20个人,m=26------------
输入 人数n,上限m.
20,26
6 13 1 11 3 17 14 12 16 2
10 8 15 5 9 18 20 7 4 19
温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答
大家正在搜