509. 斐波那契数(简单题)

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接: https://blog.csdn.net/weixin_43105156/article/details/102738960

题目描述:
斐波那契数,通常用 F(n) 表示,形成的序列称为斐波那契数列。该数列由 0 和 1 开始,后面的每一项数字都是前面两项数字的和。也就是:

F(0) = 0, F(1) = 1
F(N) = F(N - 1) + F(N - 2), 其中 N > 1.

给定 N,计算 F(N)。

示例 1:

输入:2
输出:1
解释:F(2) = F(1) + F(0) = 1 + 0 = 1.

示例 2:

输入:3
输出:2
解释:F(3) = F(2) + F(1) = 1 + 1 = 2.

示例 3:

输入:4
输出:3
解释:F(4) = F(3) + F(2) = 2 + 1 = 3.

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/fibonacci-number
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
递归解法:

class Solution {
    public int fib(int N) {
        if(N == 0) return 0;
        if(N == 1) return 1;
        return fib(N-1)+fib(N-2);
    }
}

动态规划:

扫描二维码关注公众号,回复: 7628933 查看本文章
class Solution {
    public int fib(int N) {
        int pre = 0;
        int cur = 1;
        int next = 0;
        for (int i = 2; i <= N; i++) {
            next = cur + pre;
            pre = cur;
            cur = next;
        }
        return N < 2 ? N : cur;
    }
}

解法简化,来源题解:

class Solution {
    public int fib(int N) {
        int cur = 0;
        int next = 1;
        while (N > 0){
            next += cur;
            cur = next - cur;
            N--;
        }
        return cur;
    }
}

猜你喜欢

转载自blog.csdn.net/weixin_43105156/article/details/102738960