-
Notifications
You must be signed in to change notification settings - Fork 245
Expand file tree
/
Copy pathFibonacci.java
More file actions
30 lines (24 loc) · 515 Bytes
/
Fibonacci.java
File metadata and controls
30 lines (24 loc) · 515 Bytes
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
package datastructure;
interface Generator<T> {
T next();
}
public class Fibonacci implements Generator<Integer> {
private int count = 0;
@Override
public Integer next() {
return fibonacci(count++);
}
public int fibonacci(int n) {
if (n < 2) {
return 1;
}
return fibonacci(n - 2) + fibonacci(n - 1);
}
public static void main(String[] args) {
Fibonacci fibonacci = new Fibonacci();
int size = 18;
for (int i = 0; i < size; i++) {
System.out.print(fibonacci.next() + " ");
}
}
}