In this tutorial we are going to learn how to print Fibonacci series in java program using recursion.
Read this: What is Fibonacci Series? Fibonacci series program in C using recursion.
How this Java program will behave?
Its Logic is different from Fibonacci series program in Java using iteration.
Here we have a function named fibonacci() which is recursive. Each time it will call itself to calculate the elements of the series.
This Fibonacci series program will take integer as input. And print series upto given input.
Suppose if someone has given 6 as input, output will be
0, 1, 1, 2, 3, 5
What is Recursion?
Recursion is a programming technique where a function calls itself directly or indirectly in order to solve a problem. It breaks down a large problem into smaller instances of the same problem, each of which is easier to manage and solve. Recursion is typically used in cases where a problem can naturally be divided into similar subproblems.
Characteristics of Recursion
- Base Case: This is the condition under which the recursive function will stop calling itself. Without a base case, the function would call itself indefinitely, leading to a stack overflow.
- Recursive Case: This part of the function is where it calls itself to solve a smaller part of the problem.
Example of Recursion: Calculating Factorial
The factorial of a number (denoted as 𝑛!n!) is a classic example of a recursive problem. Factorial of a number 𝑛n is the product of all positive integers less than or equal to 𝑛n. Mathematically, it’s defined as: 𝑛!=𝑛×(𝑛−1)×(𝑛−2)×…×1
For example, 5! = 5×4×3×2×1=120.
Fibonacci Series using Recursion in Java
import java.util.*;
class Main{
public static void main(String ...a){
int i, k;
Scanner sc= new Scanner(System.in);
System.out.print("Enter number- ");
int n= sc.nextInt();
System.out.println("fibonacci series is: ");
for(i=0;i<n;i++) {
System.out.println(Main.fibonacci(i));
}
}
static int fibonacci(int i){
if(i==0) return 0;
else if(i==1) return 1;
else return (fibonacci(i-1)+fibonacci(i-2));
}
}
Output:
Enter number- 4
fibonacci series is:
0
1
1
2
Conclusion
In this tutorial, we have learnt the writing and implementation of the Fibonacci series in Java using a recursive approach. The Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones, usually starting with 0 and 1.
Key Aspects:
- Recursive Approach:
- In the above Java program we have a recursive method to calculate and print the Fibonacci series.
- A recursive function named
fibonacci
is defined, which calls itself to compute each element in the series.
- User Input:
- The program takes an integer input (
n
) from the user. This n is basically the number of elements in series to print.
- The program takes an integer input (
- Function Logic:
- The
fibonacci
function serves as the recursive engine, calculating the Fibonacci value for each position in the series. Our recursive call is (fibonacci(i-1)+fibonacci(i-2)). - The base cases (
i == 0
andi == 1
) are handled to return 0 and 1, respectively.
- The
- Output :
- The output prints the Fibonacci series: 0, 1, 1, 2 after generating.
Happy coding! 🚀