-
Notifications
You must be signed in to change notification settings - Fork 148
/
Fibonacci9.java
77 lines (71 loc) · 1.47 KB
/
Fibonacci9.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package com.so;
/**
* 第9题
* 输入一个整数n,求斐波那契数列的第n项。
*
* @author qgl
* @date 2017/08/09
*/
public class Fibonacci9 {
/**
* 解法一:定义三个局部变量,作为交换
*
* @param n
* @return
*/
public static int getFibonacci1(int n) {
int result = 0;
int preOne = 1;
int preTwo = 0;
if (n == 0) {
return preTwo;
}
if (n == 1) {
return preOne;
}
for (int i = 2; i <= n; i++) {
result = preOne + preTwo;
preTwo = preOne;
preOne = result;
}
return result;
}
/**
* 解法二 :只需要两个局部变量
*
* @param n
* @return
*/
public static long getFibonacci2(int n) {
long number = 1;
long sum = 1;
if (n <= 0)
return 0;
if (n == 1 || n == 2) {
return 1;
}
while (n-- > 2) {
sum += number;
number = sum - number;
}
return sum;
}
/**
* 解法三:递归:效率低,有大量重复计算
*
* @param n
* @return
*/
public static int getFibonacci3(int n) {
if (n < 0) {
return -1;
}
if (n == 0) {
return 0;
}
if (n == 1) {
return 1;
}
return getFibonacci3(n - 1) + getFibonacci3(n - 2);
}
}