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

LintCode题解之斐波纳契数列

时间:2017-11-26 11:21:22      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:https   递归   缓存   ble   integer   cci   turn   param   highlight   

技术分享图片

 

直接使用递归的方法会导致TLE,加个缓存就好了:

public class Solution {
    
    private Integer[] buff = new Integer[1000];
    
    /*
     * @param n: an integer
     * @return: an ineger f(n)
     */
    public int fibonacci(int n) {
        if(buff[n]!=null) return buff[n];
        else if(n==1) return buff[1] = 0;
        else if(n==2) return buff[2] = 1;
        else return buff[n] = fibonacci(n-1) + fibonacci(n-2);
    }
    
}

 或者使用迭代法:

public class Solution {
    
    /*
     * @param n: an integer
     * @return: an ineger f(n)
     */
    public int fibonacci(int n) {
        if(n==1) return 0;
        else if(n==2) return 1;
        
        int a=0, b=1, c=a+b;
        n-=2;
        
        while(n-->0){
            c = a + b;
            a = b;
            b = c;
        }
        return c;
    }
    
}

  

 

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

 

LintCode题解之斐波纳契数列

标签:https   递归   缓存   ble   integer   cci   turn   param   highlight   

原文地址:http://www.cnblogs.com/cc11001100/p/7898180.html

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