题解 | #斐波那契数列#

斐波那契数列

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);
    }
    
    
}
全部评论

相关推荐

点赞 收藏 评论
分享
牛客网
牛客企业服务