-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathExample14.java
72 lines (54 loc) · 1.4 KB
/
Example14.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
package applications.algorithms;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
/** Category: Algorithms
* ID: Example14
* Description: Fibonacci sequence calculation
* Taken From:
* Details:
* TODO
*/
public class Example14 {
public static List<Integer> fibSeq(int n){
if(n == 0){
return new ArrayList<>();
}
if(n == 1){
return Arrays.asList(0);
}
if(n == 2){
return Arrays.asList(0, 1);
}
List<Integer> list = new ArrayList<>(n);
list.add(0);
n = n-1;
list.add(1);
n = n-1;
while( n > 0){
int a = list.get(list.size() -1);
int b = list.get(list.size() - 2);
list.add(a + b);
n = n - 1;
}
return list;
}
public static void main(String[] args){
int n = 0;
if(fibSeq(n).size() != 0){
System.out.println("Invalid result for n = "+n);
}
n = 1;
if(fibSeq(n).size() != 1){
System.out.println("Invalid result for n = "+n);
}
n = 2;
if(fibSeq(n).size() != 2){
System.out.println("Invalid result for n = "+n);
}
n=8;
if(!fibSeq(n).equals(Arrays.asList(0, 1, 1, 2, 3, 5, 8, 13))){
System.out.println("Invalid result for n = "+n);
}
}
}