美文网首页
算法中常见的各种数

算法中常见的各种数

作者: 张_何 | 来源:发表于2021-04-18 20:25 被阅读0次

斐波那契数列

  • 在数学上,斐波那契数列以如下被以递推的方法定义:F(0)=0,F(1)=1, F(n)=F(n - 1)+F(n - 2)(n ≥ 2,n ∈ N*);例如:0、1、1、2、3、5、8、13、21、34、……

递归解法

public static int fib(int n) {
    if (n <= 1) return n;
    return fib(n-1) + fib(n-2);
}

for 循环解法

public static int fib(int n) {
    if(n<=1) return n;
    int first = 0;
    int second = 1;
    for(int i = 0; i < n + 1; i++) {
      int sum = first + second;
      first = second;
      second = sum;
    }
    return second;
}

相关文章

网友评论

      本文标题:算法中常见的各种数

      本文链接:https://www.haomeiwen.com/subject/ysbvlltx.html