PHP迭代器实现斐波纳契数列的函数
发布:smiling 来源: PHP粉丝网 添加日期:2020-06-18 10:07:49 浏览: 评论:0
斐波纳契数列通常做法是用递归实现,当然还有其它的方法。这里现学现卖,用PHP的迭代器来实现一个斐波纳契数列,几乎没有什么难度,只是把类里的next()方法重写了一次。注释已经写到代码中,也是相当好理解的。
- 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
Tags: PHP迭代器 PHP斐波纳契数列
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)