码迷,mamicode.com
首页 > Web开发 > 详细

php约瑟夫环

时间:2015-05-28 13:51:57      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

<?php 
function popChar($str , $m , $current = 0){
    $number = count($str);
    $num = 1;
    if(count($str) == 1){
        echo $str[0];
        return;
    }
    else{
        while($num++ < $m){
            $current++ ;
            $current = $current%$number;
        }
        echo $str[$current]."<br/>";
        array_splice($str , $current , 1);
        popChar($str , $m , $current);
    }
}
//$str = array(1 , 2 , 3 , 4 , 5 , 6 , 7, 8 , 9 , 10);  
$str = array(‘a‘,‘b‘,‘c‘,‘d‘,‘e‘,‘f‘,‘g‘,‘h‘);  
$m = 4; 
popChar($str , $m);
?>

 

php约瑟夫环

标签:

原文地址:http://www.cnblogs.com/showersun/p/4535580.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!