Home > php教程 > PHP源码 > body text

一个游戏的解答

PHP中文网
Release: 2016-05-25 17:12:36
Original
1026 people have browsed it

游戏: 一场作战中,64个人被捉住了,敌方决定按一种方式处理他们,最后剩下的那个人可以活命。该方式为:给所有人编数字号,然后围成一个圈,先杀一号,每隔一个杀一人,直至只剩下一人。杰克果断站在了一个位置上,并最终成功活了下来,请问,他是几号?

<?php
$arr = array();
// 初始化
for ($i = 1; $i  1) {
    $p = $arr[&#39;p&#39; . $i];
    unset($arr[&#39;p&#39; . $i]);
    $j = $p[0];
    $k = $p[1];
    $arr[&#39;p&#39; . $j][1] = $k;
    $arr[&#39;p&#39; . $k][0] = $j;
    $i = $arr[&#39;p&#39; . $k][1];
}
// 看看还剩谁
print_r($arr);

// 结果:64
?>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!