例如:
第一個數字是:1。
看著第一個數字你可以說1個1,那麼第二個數字就是:11。
看著第二個數字你可以說2個1,也就是第三個數字是:21。
看著第三個數字你可以說1個2,1個1,也就是第四個數字是:1211。
看著第四個數字你可以說1個1,1個2,2個1,也就是第五個數字是:111221。
…………
根據詳細的說明可以參考:http://en.wikipedia.org/wiki/Look-and-say_sequence
下面用PHP實作這個序列,如下:
複製程式碼 程式碼如下:
function look($str)
{
$len = strlen($str);
$count=0;
$result='';
$temp=$str[0];
for($i=0;$i{
if($temp!=$str[$i])
{
$result.=$count.$temp;
$temp = $str[$i];
$count=1;
}
else
{
$count++;
}
}
$result.=$count.$temp;
return $ result;
}
$test_str = "1";
echo $test_str.'';
for($i=0;$i{
$test_str=look($test_str);
print $test_str."";
}
以上就介紹了hotmail outlook Look And Say 序列php實作程式碼,包含了hotmail outlook方面的內容,希望對PHP教學有興趣的朋友有幫助。