Open In App

Introduction to Recursion

Last Updated : 30 Dec, 2024
Summarize
Comments
Improve
Suggest changes
Like Article
Like
Share
Report
News Follow

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.
  • Since called function may further call itself, this process might continue forever. So it is essential to provide a base case to terminate this recursion process.

Need of Recursion

  • Recursion helps in logic building. Recursive thinking helps in solving complex problems by breaking them into smaller subproblems.
  • Recursive solutions work as a a basis for Dynamic Programming and Divide and Conquer algorithms.
  • Certain problems can be solved quite easily using recursion like Towers of Hanoi (TOH), Inorder/Preorder/Postorder Tree Traversals, DFS of Graph, etc.

Steps

Step1 – Define a base case: Identify the simplest (or base) case for which the solution is known or trivial. This is the stopping condition for the recursion, as it prevents the function from infinitely calling itself.

Step2 – Define a recursive case: Define the problem in terms of smaller subproblems. Break the problem down into smaller versions of itself, and call the function recursively to solve each subproblem.

Step3 – Ensure the recursion terminates: Make sure that the recursive function eventually reaches the base case, and does not enter an infinite loop.

Step4 – Combine the solutions: Combine the solutions of the subproblems to solve the original problem.

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 simply to add the numbers starting from 0 to n. So the function simply looks like this,

approach(1) – Simply adding one by one

f(n) = 0 + 1 + 2 + 3 +……..+ n

but there is another mathematical approach of representing this,

approach(2) – Recursive adding 

f(n) = 0                n=0

f(n) = n + f(n-1)    n>=1

C++
#include <iostream>
using namespace std;

// Recursive function to find the sum of 
// numbers from 0 to n
int findSum(int n)
{
    // Base case 
    if (n == 0) 
        return 0; 
  
    // Recursive case 
    return n + findSum(n - 1);
}

int main()
{
    int n = 5;
    cout << findSum(n);
    return 0;
}
C Java Python C# JavaScript PHP

Output
15

What is the base condition in recursion? 
A recursive program stops at a base condition. There can be more than one base conditions in a recursion. In the above program, the base condition is when n = 1.\

How a particular problem is solved using recursion? 
The idea is to represent a problem in terms of one or more smaller problems, and add one or more base conditions that stop the recursion.  

Example 2 : Factorial of a Number
Factorial of a number n (where n >= 0) is defined as multiplication of numbers from 1 to n. To recursive compute, we compute factorial n if we know the factorial of (n-1). The base case for factorial would be n = 0. We return 1 when n = 0. 

C++
#include <iostream>
using namespace std;

int fact(int n)
{
    // BASE CONDITION
    if (n == 0)
        return 1;
  
    return n * fact(n - 1);
}

int main()
{
    cout << "Factorial of 5 : " << fact(5);
    return 0;
}
C Java Python C# JavaScript PHP

Output
Factorial of 5 : 120

Illustration of the above code:

factorial

When does Stack Overflow error occur in recursion? 
If the base case is not reached or not defined, then the stack overflow problem may arise. Let us take an example to understand this.

int fact(int n)
{
// wrong base case (it may cause
// stack overflow).
if (n == 100)
return 1;

else
return n*fact(n-1);
}

If fact(10) is called, it will call fact(9), fact(8), fact(7), and so on but the number will never reach 100. So, the base case is not reached. If the memory is exhausted by these functions on the stack, it will cause a stack overflow error. 

What is the difference between direct and indirect recursion? 
A function fun is called direct recursive if it calls the same function fun. A function fun is called indirect recursive if it calls another function say fun_new and fun_new calls fun directly or indirectly. The difference between direct and indirect recursion has been illustrated in Table 1. 

// An example of direct recursion
void directRecFun()
{
// Some code....

directRecFun();

// Some code...
}

// An example of indirect recursion
void indirectRecFun1()
{
// Some code...

indirectRecFun2();

// Some code...
}
void indirectRecFun2()
{
// Some code...

indirectRecFun1();

// Some code...
}

What is the difference between tailed and non-tailed recursion? 
A recursive function is tail recursive when a recursive call is the last thing executed by the function. Please refer tail recursion article for details. 

How memory is allocated to different function calls in recursion? 
Recursion uses more memory to store data of every recursive call in an internal function call stack.

  • Whenever we call a function, its record is added to the stack and remains there until the call is finished.
  • The internal systems use a stack because function calling follows LIFO structure, the last called function finishes first.

When any function is called from main(), the memory is allocated to it on the stack. A recursive function calls itself, the memory for a called function is allocated on top of memory allocated to the calling function and a different copy of local variables is created for each function call. When the base case is reached, the function returns its value to the function by whom it is called and memory is de-allocated and the process continues.
Let us take the example of how recursion works by taking a simple function. 

C++
// A C++ program to demonstrate working of
// recursion
#include <bits/stdc++.h>
using namespace std;

void printFun(int test)
{
    if (test < 1)
        return;
    else {
        cout << test << " ";
        printFun(test - 1); // statement 2
        cout << test << " ";
        return;
    }
}

// Driver Code
int main()
{
    int test = 3;
    printFun(test);
}
C Java Python C# JavaScript PHP

Output
3 2 1 1 2 3 

When printFun(3) is called from main(), memory is allocated to printFun(3) and a local variable test is initialized to 3 and statement 1 to 4 are pushed on the stack as shown in below diagram. It first prints ‘3’. In statement 2, printFun(2) is called and memory is allocated to printFun(2) and a local variable test is initialized to 2 and statement 1 to 4 are pushed into the stack. Similarly, printFun(2) calls printFun(1) and printFun(1) calls printFun(0). printFun(0) goes to if statement and it return to printFun(1). The remaining statements of printFun(1) are executed and it returns to printFun(2) and so on. In the output, values from 3 to 1 are printed and then 1 to 3 are printed. The memory stack has been shown in below diagram.

recursion

Recursion VS Iteration

SR No.RecursionIteration
1)Terminates when the base case becomes true.Terminates when the loop condition becomes false.
2)Logic is built in terms of smaller problems.Logic is built using iterating over something.
3)Every recursive call needs extra space in the stack memory.Every iteration does not require any extra space.
4)Smaller code size.Larger code size.

Example 4 : Fibonacci with Recursion
Write a program and recurrence relation to find the Fibonacci series of n where n >= 0. 
Mathematical Equation:  

n if n == 0, n == 1;      
fib(n) = fib(n-1) + fib(n-2) otherwise;

Recurrence Relation: 

T(n) = T(n-1) + T(n-2) + O(1)
C++
// C++ code to implement Fibonacci series
#include <bits/stdc++.h>
using namespace std;

// Function for fibonacci

int fib(int n)
{
    // Stop condition
    if (n == 0)
        return 0;

    // Stop condition
    if (n == 1 || n == 2)
        return 1;

    // Recursion function
    else
        return (fib(n - 1) + fib(n - 2));
}

// Driver Code
int main()
{
    // Initialize variable n.
    int n = 5;
    cout<<"Fibonacci series of 5 numbers is: ";

    // for loop to print the fibonacci series.
    for (int i = 0; i < n; i++) 
    {
        cout<<fib(i)<<" ";
    }
    return 0;
}
C Java Python C# JavaScript

Output
Fibonacci series of 5 numbers is: 0 1 1 2 3 

Recursion Tree for the above Code:

fibonaci


Example:  Real Applications of Recursion in real problems

Recursion is a powerful technique that has many applications in computer science and programming. Here are some of the common applications of recursion:

  • Tree and graph traversal: Recursion is frequently used for traversing and searching data structures such as trees and graphs. Recursive algorithms can be used to explore all the nodes or vertices of a tree or graph in a systematic way.
  • Sorting algorithms: Recursive algorithms are also used in sorting algorithms such as quicksort and merge sort. These algorithms use recursion to divide the data into smaller subarrays or sublists, sort them, and then merge them back together.
  • Divide-and-conquer algorithms: Many algorithms that use a divide-and-conquer approach, such as the binary search algorithm, use recursion to break down the problem into smaller subproblems.
  • Fractal generation: Fractal shapes and patterns can be generated using recursive algorithms. For example, the Mandelbrot set is generated by repeatedly applying a recursive formula to complex numbers.
  • Backtracking algorithms: Backtracking algorithms are used to solve problems that involve making a sequence of decisions, where each decision depends on the previous ones. These algorithms can be implemented using recursion to explore all possible paths and backtrack when a solution is not found.
  • Memoization: Memoization is a technique that involves storing the results of expensive function calls and returning the cached result when the same inputs occur again. Memoization can be implemented using recursive functions to compute and cache the results of subproblems.

These are just a few examples of the many applications of recursion in computer science and programming. Recursion is a versatile and powerful tool that can be used to solve many different types of problems.

What are the disadvantages of recursive programming over iterative programming? 
Note every recursive program can be written iteratively and vice versa is also true.

  • Recursive programs typically have more space requirements and also more time to maintain the recursion call stack.
  • Recursion can make the code more difficult to understand and debug, since it requires thinking about multiple levels of function calls..

What are the advantages of recursive programming over iterative programming? 

Summary of Recursion:

  • There are two types of cases in recursion i.e. recursive case and a base case.
  • The base case is used to terminate the recursive function when the case turns out to be true.
  • Each recursive call makes a new copy of that method in the stack memory.
  • Infinite recursion may lead to running out of stack memory.
  • Examples of Recursive algorithms: Merge Sort, Quick Sort, Tower of Hanoi, Fibonacci Series, Factorial Problem, etc.

Output based practice problems for beginners: 
Practice Questions for Recursion | Set 1 
Practice Questions for Recursion | Set 2 
Practice Questions for Recursion | Set 3 
Practice Questions for Recursion | Set 4 
Practice Questions for Recursion | Set 5 
Practice Questions for Recursion | Set 6 
Practice Questions for Recursion | Set 7
Quiz on Recursion 
Coding Practice on Recursion: 
All Articles on Recursion 
Recursive Practice Problems with Solutions



Practice Tags :

Similar Reads

three90RightbarBannerImg