Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions Dynamic Programming/Fibonacci.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/**
* This is a algorithm to implement the Fibonacci Nth element problem
* using dynamic programming paradigm. This version I am using the memoization
* strategy to going top-down to find all needed values and store on the fiboMemo array.
*
* @author Augusto Baltazar (augusto.jaba@gmail.com)
*/
public class Fibonacci {

private int[] fiboMemo;

private int findNthElement(int n) {

if (this.fiboMemo == null) {
fiboMemo = new int[n + 1];
}

if (n <= 1) {
fiboMemo[n] = n;
} else {
fiboMemo[n] = findNthElement(n - 1) + findNthElement(n - 2);
}

return fiboMemo[n];
}

/**
* Tests the function to the given number passed as argument
* @param args
*/
public static void main(String[] args) {
try {
int arg = Integer.parseInt(args[0]);
System.out.println(new Fibonacci().findNthElement(arg));
} catch (Exception e) {
System.out.println("The argument entered is not a valid integer number.");
}
}
}