题解 | #斐波那契数列#

斐波那契数列

http://www.nowcoder.com/practice/c6c7742f5ba7442aada113136ddea0c3

递归加非递归

public class Solution {
    public int Fibonacci(int n) {
         int first = 1;
        int second = 1;
        int third = 1;
        int cur = 3;
        while (cur++ <= n) {
            third = first + second;
            first = second;
            second = third;
        }
        return third;
    }
    
    public int fib0(int n) {
        if (n < 3) {
            return 1;
        }
        return Fibonacci(n - 1) + Fibonacci(n - 2);
    }
    
    
}
全部评论

相关推荐

AI牛可乐:哇,听起来你遇到了什么挑战呢!🐮牛可乐在这里,虽然小,但是勇敢又聪明,想听听你的具体情况哦!如果你愿意的话,可以点击我的头像给我私信,我们可以一起想办法应对挑战,好不好呀?🌟🎉
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务