10.1. Fibonacci Sequence
This section discusses recursive, iterative, and dynamic programming ways of generating the Fibonacci sequence.
Last updated
Was this helpful?
This section discusses recursive, iterative, and dynamic programming ways of generating the Fibonacci sequence.
Last updated
Was this helpful?
The is a sequence of numbers generated as follows:
where
Let us create the interface that contains one abstract method:
L2
: returns the 'th Fibonacci number.
The followings demonstrate how to generate the Fibonacci sequence using recursion:
What is the worst-case complexity of this recursive algorithm?
The followings demonstrate how to generate the Fibonacci sequence using dynamic programming:
Let us create the FibonacciDynamic
class inheriting Fibonacci
:
L7
: creates a dynamic table represented by an array where the 'th dimension is to be filled with the 'th Fibonacci number.
L16
: returns the value in the dynamic table if exists.
L17
: fills in the dynamic table using recursion.
What is the worst-case complexity of this dynamic programming algorithm?
The followings show performance comparisons:
Let us create the class inheriting Fibonacci
:
For this particular task, the efficiency can be further enhanced using iteration. Let us create the class inheriting Fibonacci
: