其他分享
首页 > 其他分享> > 剑指 Offer 10- I. 斐波那契数列

剑指 Offer 10- I. 斐波那契数列

作者:互联网

https://leetcode-cn.com/problems/fei-bo-na-qi-shu-lie-lcof/

使用动态规划
使用返回a,是因为,当使用b返回的时候需要考虑n == 0 的特例

class Solution {
    public int fib(int n) {
        int a = 0, b = 1, sum;
        for(int i = 0; i < n; i++){
            sum = (a + b) % 1000000007;
            a = b;
            b = sum;
        }
        return a;
    }
}

标签:返回,10,cn,int,sum,1000000007,斐波,使用,那契
来源: https://www.cnblogs.com/zhbeii/p/15945465.html