下⾯代码采⽤递推算法来计算斐波那契数列f(n)=f(n-1)+f(n-2)
int fib(int n) {
if (n == 0 || n == 1)
return n;
int f1 = 0;
int f2 = 1;
int result = 0;
for (int i = 2; i <= n; i++) {
________________________________ // 在此处填入代码
}
return result;
}
result = f1 + f2;
f1 = f2;
f2 = result;
result += f1 + f2;
f1 = f2;
f2 = result;
result += f1 + f2;
f2 = result;
f1 = f2;
result = f1 + f2;
f2 = result;
f1 = f2;
发表评论