首页 > 代码库 > 14.约瑟夫环问题
14.约瑟夫环问题
http://zhedahht.blog.163.com/blog/static/2541117420072250322938/
http://en.wikipedia.org/wiki/Josephus_problem
证明略。
//f(1,m)=0 //f(n,m)=[f(n-1,m)+m]%n (n>=2) int LastRemaining_Solution2(int n, unsigned int m) { // invalid input if(n <= 0 || m < 0) return -1; // if there are only one integer in the circle initially, // of course the last remaining one is 0 int lastinteger = 0; // find the last remaining one in the circle with n integers for (int i = 2; i <= n; i ++) lastinteger = (lastinteger + m) % i; return lastinteger; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。