A Recursive function can be defined as a routine that calls itself directly or indirectly.
In other words, a recursive function is a function that solves a problem by solving smaller instances of the same problem. This technique is commonly used in programming to solve problems that can be broken down into simpler, similar subproblems.

Need of Recursive Function:
A recursive function is a function that solves a problem by solving smaller instances of the same problem. This technique is often used in programming to solve problems that can be broken down into simpler, similar subproblems.
1. Solving complex tasks:
Recursive functions break complex problems into smaller instances of the same problem, resulting in compact and readable code.
2. Divide and Conquer:
Recursive functions are suitable for divide-and-conquer algorithms such as merge sort and quicksort, breaking problems into smaller subproblems, solving them recursively, and merging the solutions with the original problem.
3. Backtracking:
Recursive backtracking is ideal for exploring and solving problems like N-Queens and Sudoku.
4. Dynamic programming:
Recursive functions efficiently solve dynamic programming problems by solving subproblems and combining their solutions into a complete solution.
5. Tree and graph structures:
Recursive functions are great for working with tree and graph structures, simplifying traversal and pattern recognition tasks.
How to write a Recursive Function:
Components of a recursive function:
Base case: Every recursive function must have a base case. The base case is the simplest scenario that does not require further recursion. This is a termination condition that prevents the function from calling itself indefinitely. Without a proper base case, a recursive function can lead to infinite recursion.
Recursive case: In the recursive case, the function calls itself with the modified arguments. This is the essence of recursion - solving a larger problem by breaking it down into smaller instances of the same problem. The recursive case should move closer to the base case with each iteration.
Let's consider the example of factorial of number:
In this example, the base case is when n is 0, and the function returns 1. The recursive case multiplies n with the result of the function called with parameter n - 1. The process continues until the base case is reached.
It's essential to ensure that the recursive function has a correct base case and that the recursive calls lead to the base case, otherwise, the procedure might run indefinitely, leading to a stack overflow (exceeding the available memory allocated for function calls).
Below is the implementation of factorial of a number:
C++
#include <iostream>
using namespace std;
// Recursive Function to calculate Factorial of a number
int factorial(int n)
{
// Base case
if (n == 0) {
return 1;
}
// Recursive case
return n * factorial(n - 1);
}
// Driver Code
int main()
{
int n = 4;
cout << "Factorial of " << n
<< " is:" << factorial(n);
return 0;
}
Java
import java.util.Scanner;
public class Factorial {
// Recursive Function to calculate the factorial of a number
static int factorial(int n) {
// Base case: If n is 0, the factorial is 1.
if (n == 0) {
return 1;
}
// Recursive case: Calculate the factorial by multiplying n with the factorial of (n - 1).
return n * factorial(n - 1);
}
public static void main(String[] args) {
int n = 4;
// Calculate and print the factorial of n.
int result = factorial(n);
System.out.println("Factorial of " + n + " is: " + result);
}
}
Python
# Recursive Function to calculate Factorial of a number
def factorial(n):
# Base case
if n == 0:
return 1
# Recursive case
return n * factorial(n - 1)
# Driver Code
if __name__ == "__main__":
n = 4
print("Factorial of", n, "is:", factorial(n))
C#
using System;
class Program
{
// Recursive Function to calculate Factorial of a number
static int Factorial(int n)
{
// Base case
if (n == 0)
{
return 1;
}
// Recursive case
return n * Factorial(n - 1);
}
// Driver Code
static void Main()
{
int n = 4;
Console.WriteLine("Factorial of " + n + " is: " + Factorial(n));
}
}
JavaScript
// Function to calculate the factorial of a number using recursion
function factorial(n) {
// Base case: If n is 0, the factorial is 1.
if (n === 0) {
return 1;
}
// Recursive case: Calculate the factorial by multiplying n with the factorial of (n - 1).
return n * factorial(n - 1);
}
// Main function
function main() {
// Given number
let n = 4;
// Calculate the factorial of n.
let result = factorial(n);
// Print the result
console.log("Factorial of " + n + " is: " + result);
}
// Call the main function
main();
OutputFactorial of 4 is:24
Time Complexity: O(n)
Auxiliary Space: O(n)
Similar Reads
Introduction to Recursion The process in which a function calls itself directly or indirectly is called recursion and the corresponding function is called a recursive function. A recursive algorithm takes one step toward solution and then recursively call itself to further move. The algorithm stops once we reach the solution
14 min read
What is Recursion? Recursion is defined as a process which calls itself directly or indirectly and the corresponding function is called a recursive function.Example 1 : Sum of Natural Numbers Let us consider a problem to find the sum of natural numbers, there are several ways of doing that but the simplest approach is
8 min read
Difference between Recursion and Iteration A program is called recursive when an entity calls itself. A program is called iterative when there is a loop (or repetition).Example: Program to find the factorial of a number C++ // C++ program to find factorial of given number #include<bits/stdc++.h> using namespace std; // ----- Recursion
6 min read
Types of Recursions What is Recursion? The process in which a function calls itself directly or indirectly is called recursion and the corresponding function is called a recursive function. Using recursive algorithm, certain problems can be solved quite easily. Examples of such problems are Towers of Hanoi (TOH), Inord
15+ min read
Finite and Infinite Recursion with examples The process in which a function calls itself directly or indirectly is called Recursion and the corresponding function is called a Recursive function. Using Recursion, certain problems can be solved quite easily. Examples of such problems are Towers of Hanoi (TOH), Inorder/Preorder/Postorder Tree Tr
6 min read
What is Tail Recursion Tail recursion is defined as a recursive function in which the recursive call is the last statement that is executed by the function. So basically nothing is left to execute after the recursion call.For example the following function print() is tail recursive.C++// An example of tail recursive funct
7 min read
What is Implicit recursion? What is Recursion? Recursion is a programming approach where a function repeats an action by calling itself, either directly or indirectly. This enables the function to continue performing the action until a particular condition is satisfied, such as when a particular value is reached or another con
5 min read
Why is Tail Recursion optimization faster than normal Recursion? Tail recursion is defined as a recursive function in which the recursive call is the last statement that is executed by the function. So basically nothing is left to execute after the recursion call.Why is tail recursion optimization faster than normal recursion?In non-tail recursive functions, afte
4 min read
Recursive Functions A Recursive function can be defined as a routine that calls itself directly or indirectly. In other words, a recursive function is a function that solves a problem by solving smaller instances of the same problem. This technique is commonly used in programming to solve problems that can be broken do
4 min read
Difference Between Recursion and Induction Recursion and induction are fundamental ideas in computer science and mathematics that might be regularly used to solve problems regarding repetitive structures. Recursion is a programming technique in which a function calls itself to solve the problem, whilst induction is a mathematical proof techn
4 min read