码迷,mamicode.com
首页 > 其他好文 > 详细

[入门]斐波纳契数列

时间:2016-04-29 00:11:00      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

题目来源:http://www.lintcode.com/zh-cn/problem/fibonacci/

技术分享

 1 class Solution{
 2 public:
 3     /**
 4      * @param n: an integer
 5      * @return an integer f(n)
 6      */
 7     int fibonacci(int n) {
 8         // write your code here
 9        int a=0,b=1;
10        int c;
11        for(int i = 1; i<=n-1; i++) {
12            c = a + b;
13            a = b;
14            b = c;
15        }
16        return a;
17     }
18 };

一开始用递归的方法,error,超时。

i<=n-2,返回c,error。

[入门]斐波纳契数列

标签:

原文地址:http://www.cnblogs.com/hslzju/p/5444603.html

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