Leetcode_面试题62. 圆圈中最后剩下的数字(约瑟夫环)
Posted zxcoder
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode_面试题62. 圆圈中最后剩下的数字(约瑟夫环)相关的知识,希望对你有一定的参考价值。
经典的约瑟夫环,n个人排成一圈,第m个出队。
递归
code1
class Solution {
public:
int f(int n,int m){
if(n==1){
//递归边界,最后一个
return 0;
}
//先m出队,而最后留下的是在n-1个中排第f(n-1,m),在n个中就是排在m后面的第f(n-1,m)
return (m+f(n-1,m))%n;
}
int lastRemaining(int n, int m) {
return f(n,m);
}
};
非递归
code2
class Solution {
public:
int lastRemaining(int n, int m) {
int f=0;
for(int i=2;i<=n;i++){
f=(f+m)%i;
}
return f;
}
};
以上是关于Leetcode_面试题62. 圆圈中最后剩下的数字(约瑟夫环)的主要内容,如果未能解决你的问题,请参考以下文章
[LeetCode]面试题62. 圆圈中最后剩下的数字(数学)
[LeetCode]面试题62. 圆圈中最后剩下的数字(数学)
约瑟夫环(超好的代码存档)--19--约瑟夫环--LeetCode面试题62(圆圈最后剩下的数字)