约瑟夫循环 升级版

一世执手 提交于 2020-02-11 12:19:41

输入n,代表总人数
第二行输入每个人的编号,按照编号进行循环,即用编号代替了原先的定值。
最后输出幸存者的编号。

#include<stdio.h>
int main(){
	int i,j,k,m,n;
	i=j=k=m=n=0;
	int peo,where;
	scanf("%d",&peo);
	int all[peo];
	for(i=0;i<peo;i++){
		scanf("%d",&all[i]);
	}
	where=0;
	while(peo!=1){
		where=(where+all[where])%peo;
		if(where==peo-1){
			peo--;continue;
		}
		else{
			while(where!=peo-1){
				all[where]=all[where+1];
				where++;
			}
			peo--;continue;
		}
	}
	printf("%d\n",all[0]);
}
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!