算法中常见的各种数

2021-04-18  本文已影响0人  张_何

斐波那契数列

递归解法

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;
}
上一篇 下一篇

猜你喜欢

热点阅读