![]() |
VOOZH | about |
Given an integer n, the task is to print the first n terms of the Fibonacci series in reverse order using Recursion.
Examples:
Input: N = 5
Output: 3 2 1 1 0
Explanation: First five terms are - 0 1 1 2 3.Input: N = 10
Output: 34 21 13 8 5 3 2 1 1 0
Approach: The idea is to use recursion in a way that keeps calling the same function again till N is greater than 0 and keeps on adding the terms and after that starts printing the terms.
Follow the steps below to solve the problem:
Below is the implementation of the above approach.
34 21 13 8 5 3 2 1 1 0
Time Complexity: O(N)
Auxiliary Space: O(N)