如何用PHP迭代器來實作一個斐波納契數列

藏色散人
發布: 2023-04-07 21:58:02
轉載
2454 人瀏覽過

斐波納契數列通常做法是用遞歸實現,當然還有其它的方法。這裡現學現賣,用PHP的迭代器來實作一個斐波納契數列,幾乎沒有什麼難度,只是把類別裡的next()方法重寫了一次。

註解已經寫到程式碼中,也是相當好理解的。

/**
* @author 简明现代魔法 http://www.nowamagic.net
*/
class Fibonacci implements Iterator { 
    private $previous = 1; 
    private $current = 0; 
    private $key = 0; 
    
    public function current() { 
        return $this->current; 
    } 
    
    public function key() { 
        return $this->key; 
    } 
    
    public function next() { 
// 关键在这里
// 将当前值保存到  $newprevious
        $newprevious = $this->current; 
// 将上一个值与当前值的和赋给当前值
        $this->current += $this->previous; 
// 前一个当前值赋给上一个值
        $this->previous = $newprevious; 
        $this->key++; 
    } 
    
    public function rewind() { 
        $this->previous = 1; 
        $this->current = 0; 
        $this->key = 0; 
    } 
    
    public function valid() { 
        return true; 
    } 
} 
$seq = new Fibonacci; 
$i = 0; 
foreach ($seq as $f) { 
    echo "$f "; 
    if ($i++ === 15) break; 
}
登入後複製

程式運行結果:

0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610
登入後複製

推薦:《PHP教學

以上是如何用PHP迭代器來實作一個斐波納契數列的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
php
來源:nowamagic
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!