題目
描述
查找斐波納契數(shù)列中第 N 個(gè)數(shù)。
所謂的斐波納契數(shù)列是指:
前2個(gè)數(shù)是 0 和 1 忍啸。
第 i 個(gè)數(shù)是第 i-1 個(gè)數(shù)和第i-2 個(gè)數(shù)的和
斐波納契數(shù)列的前10個(gè)數(shù)字是:
0, 1, 1, 2, 3, 5, 8, 13, 21, 34 ...
樣例
給定1
察净,返回0
給定2
果复,返回1
給定10
叙淌,返回34
解答
思路
1.遞歸(在Lint Code回報(bào)TLE)
2.遞推
代碼
class Solution {
/**
* @param n: an integer
* @return an integer f(n)
*/
public int fibonacci(int n) {
// write your code here
if(n < 3) return n-1;
// else return fibonacci(n-1) + fibonacci(n-2);
else{
int a = 0, b =1, c = 0;
for (int i = 0; i < n - 2; i++ ){
c = a + b;
a = b;
b = c;
}
return c;
}
}
}
后記
一般面試的話我都會(huì)寫:
class Solution {
/**
* @param n: an integer
* @return an integer f(n)
*/
public int fibonacci(int n) {
// write your code here
if(n < 3) return n-1;
else return fibonacci(n-1) + fibonacci(n-2);
}
}
}
結(jié)果應(yīng)該是對(duì)的互亮,但是這里L(fēng)intCode會(huì)報(bào)TLE