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), Inorder/Preorder/Postorder Tree Traversals, DFS of Graph, etc.
Types of Recursions: Recursion are mainly of two types depending on whether a function calls itself from within itself or more than one function call one another mutually. The first one is called direct recursion and another one is called indirect recursion. Thus, the two types of recursion are:
1. Direct Recursion: These can be further categorized into four types:
Tail Recursion: If a recursive function calling itself and that recursive call is the last statement in the function then it’s known as Tail Recursion. After that call the recursive function performs nothing. The function has to process or perform any operation at the time of calling and it does nothing at returning time. Example:
C++
// Code Showing Tail Recursion
#include <iostream>
usingnamespacestd;
// Recursion function
voidfun(intn)
{
if(n > 0) {
cout << n << " ";
// Last statement in the function
fun(n - 1);
}
}
// Driver Code
intmain()
{
intx = 3;
fun(x);
return0;
}
// This code is contributed by shubhamsingh10
C
// Code Showing Tail Recursion
#include <stdio.h>
// Recursion function
voidfun(intn)
{
if(n > 0) {
printf("%d ", n);
// Last statement in the function
fun(n - 1);
}
}
// Driver Code
intmain()
{
intx = 3;
fun(x);
return0;
}
Java
// Java code Showing Tail Recursion
classGFG {
// Recursion function
staticvoidfun(intn)
{
if(n > 0)
{
System.out.print(n + " ");
// Last statement in the function
fun(n - 1);
}
}
// Driver Code
publicstaticvoidmain(String[] args)
{
intx = 3;
fun(x);
}
}
// This code is contributed by pratham76.
Python3
# Code Showing Tail Recursion
# Recursion function
deffun(n):
if(n > 0):
print(n, end=" ")
# Last statement in the function
fun(n -1)
# Driver Code
x =3
fun(x)
# This code is contributed by Shubhamsingh10
C#
// C# code Showing Tail Recursion
usingSystem;
classGFG
{
// Recursion function
staticvoidfun(intn)
{
if(n > 0)
{
Console.Write(n + " ");
// Last statement in the function
fun(n - 1);
}
}
// Driver Code
publicstaticvoidMain(string[] args)
{
intx = 3;
fun(x);
}
}
// This code is contributed by rutvik_56
Javascript
<script>
// Javascript code Showing Tail Recursion
// Recursion function
functionfun(n)
{
if(n > 0)
{
document.write(n + " ");
// Last statement in the function
fun(n - 1);
}
}
// Driver Code
varx = 3;
fun(x);
// This code is contributed by shivanisinghss2110
</script>
Output
3 2 1
Let’s understand the example by tracing tree of recursive function. That is how the calls are made and how the outputs are produced.
Time Complexity For Tail Recursion : O(n) Space Complexity For Tail Recursion : O(n) Note: Time & Space Complexity is given for this specific example. It may vary for another example.
Let’s now converting Tail Recursion into Loop and compare each other in terms of Time & Space Complexity and decide which is more efficient.
C++
// Converting Tail Recursion into Loop
#include <iostream>
usingnamespacestd;
voidfun(inty)
{
while(y > 0) {
cout << y << " ";
y--;
}
}
// Driver code
intmain()
{
intx = 3;
fun(x);
return0;
}
//This Code is contributed by Shubhamsingh10
C
// Converting Tail Recursion into Loop
#include <stdio.h>
voidfun(inty)
{
while(y > 0) {
printf("%d ", y);
y--;
}
}
// Driver code
intmain()
{
intx = 3;
fun(x);
return0;
}
Java
// Converting Tail Recursion into Loop
importjava.io.*;
classGFG
{
staticvoidfun(inty)
{
while(y > 0) {
System.out.print(" "+ y);
y--;
}
}
// Driver code
publicstaticvoidmain(String[] args)
{
intx = 3;
fun(x);
}
}
// This code is contributed by shivanisinghss2110
Python3
# Converting Tail Recursion into Loop
deffun(y):
while(y > 0):
print(y , end =" ")
y -=1
# Driver code
x =3
fun(x)
# This Code is contributed by shivanisinghss2110
C#
// Converting Tail Recursion into Loop
usingSystem;
classGFG
{
staticvoidfun(inty)
{
while(y > 0) {
Console.Write(" "+ y);
y--;
}
}
// Driver code
publicstaticvoidMain(String[] args)
{
intx = 3;
fun(x);
}
}
// This code is contributed by shivanisinghss2110
Javascript
<script>
functionfun(y)
{
while(y > 0) {
document.write(" "+ y);
y--;
}
}
// Driver code
varx = 3;
fun(x);
// This code is contributed by shivanisinghss2110
</script>
Output
3 2 1
Time Complexity: O(n) Space Complexity: O(1)
Note: Time & Space Complexity is given for this specific example. It may vary for another example. So it was seen that in case of loop the Space Complexity is O(1) so it was better to write code in loop instead of tail recursion in terms of Space Complexity which is more efficient than tail recursion.
Why space complexity is less in case of loop ? Before explaining this I am assuming that you are familiar with the knowledge that’s how the data stored in main memory during execution of a program. In brief,when the program executes,the main memory divided into three parts. One part for code section, the second one is heap memory and another one is stack memory. Remember that the program can directly access only the stack memory, it can’t directly access the heap memory so we need the help of pointer to access the heap memory.
Let’s now understand why space complexity is less in case of loop ? In case of loop when function “(void fun(int y))” executes there only one activation record created in stack memory(activation record created for only ‘y’ variable) so it takes only ‘one’ unit of memory inside stack so it’s space complexity is O(1) but in case of recursive function every time it calls itself for each call a separate activation record created in stack.So if there’s ‘n’ no of call then it takes ‘n’ unit of memory inside stack so it’s space complexity is O(n).
Head Recursion: If a recursive function calling itself and that recursive call is the first statement in the function then it’s known as Head Recursion. There’s no statement, no operation before the call. The function doesn’t have to process or perform any operation at the time of calling and all operations are done at returning time. Example:
C++
// C++ program showing Head Recursion
#include <bits/stdc++.h>
usingnamespacestd;
// Recursive function
voidfun(intn)
{
if(n > 0) {
// First statement in the function
fun(n - 1);
cout << " "<< n;
}
}
// Driver code
intmain()
{
intx = 3;
fun(x);
return0;
}
// this code is contributed by shivanisinghss2110
C
// C program showing Head Recursion
#include <stdio.h>
// Recursive function
voidfun(intn)
{
if(n > 0) {
// First statement in the function
fun(n - 1);
printf("%d ", n);
}
}
// Driver code
intmain()
{
intx = 3;
fun(x);
return0;
}
Java
// Java program showing Head Recursion
importjava.io.*;
classGFG{
// Recursive function
staticvoidfun(intn)
{
if(n > 0) {
// First statement in the function
fun(n - 1);
System.out.print(" "+ n);
}
}
// Driver code
publicstaticvoidmain(String[] args)
{
intx = 3;
fun(x);
}
}
// This code is contributed by shivanisinghss2110
Python3
# Python program showing Head Recursion
# Recursive function
deffun(n):
if(n > 0):
# First statement in the function
fun(n -1)
print(n,end=" ")
# Driver code
x =3
fun(x)
# this code is contributed by shivanisinghss2110
C#
// Java program showing Head Recursion
usingSystem;
classGFG{
// Recursive function
staticvoidfun(intn)
{
if(n > 0) {
// First statement in the function
fun(n - 1);
Console.Write(" "+ n);
}
}
// Driver code
publicstaticvoidMain(String[] args)
{
intx = 3;
fun(x);
}
}
// This code is contributed by shivanisinghss2110
Javascript
<script>
// JavaScript program showing Head Recursion
// Recursive function
functionfun(n)
{
if(n > 0) {
// First statement in the function
fun(n - 1);
document.write(" "+ n);
}
}
// Driver code
varx = 3;
fun(x);
// This code is contributed by shivanisinghss2110
</script>
Output
1 2 3
Let’s understand the example by tracing tree of recursive function. That is how the calls are made and how the outputs are produced.
Time Complexity For Head Recursion: O(n) Space Complexity For Head Recursion: O(n)
Note: Time & Space Complexity is given for this specific example. It may vary for another example. Note: Head recursion can’t easily convert into loop as Tail Recursion but it can. Let’s convert the above code into the loop.
C++
// Converting Head Recursion into Loop
#include <iostream>
usingnamespacestd;
// Recursive function
voidfun(intn)
{
inti = 1;
while(i <= n) {
cout <<" "<< i;
i++;
}
}
// Driver code
intmain()
{
intx = 3;
fun(x);
return0;
}
// this code is contributed by shivanisinghss2110
C
// Converting Head Recursion into Loop
#include <stdio.h>
// Recursive function
voidfun(intn)
{
inti = 1;
while(i <= n) {
printf("%d ", i);
i++;
}
}
// Driver code
intmain()
{
intx = 3;
fun(x);
return0;
}
Java
// Converting Head Recursion into Loop
importjava.util.*;
classGFG
{
// Recursive function
staticvoidfun(intn)
{
inti = 1;
while(i <= n) {
System.out.print(" "+ i);
i++;
}
}
// Driver code
publicstaticvoidmain(String[] args)
{
intx = 3;
fun(x);
}
}
// this code is contributed by shivanisinghss2110
Python3
# Converting Head Recursion into Loop
# Recursive function
deffun(n):
i =1
while(i <=n):
print(i,end=" ")
i+=1
# Driver code
x =3
fun(x)
# This code is contributed by shivanisinghss2110
C#
// Converting Head Recursion into Loop
usingSystem;
classGFG
{
// Recursive function
staticvoidfun(intn)
{
inti = 1;
while(i <= n) {
Console.Write(" "+ i);
i++;
}
}
// Driver code
publicstaticvoidMain(String[] args)
{
intx = 3;
fun(x);
}
}
// this code is contributed by shivanisinghss2110
Javascript
<script>
// Converting Head Recursion into Loop
// Recursive function
functionfun(n)
{
vari = 1;
while(i <= n) {
document.write(" "+ i);
i++;
}
}
// Driver code
varx = 3;
fun(x);
// this code is contributed by shivanisinghss2110
</script>
Output
1 2 3
Tree Recursion: To understand Tree Recursion let’s first understand Linear Recursion. If a recursive function calling itself for one time then it’s known as Linear Recursion. Otherwise if a recursive function calling itself for more than one time then it’s known as Tree Recursion. Example: Pseudo Code for linear recursion
fun(n)
{
// some code
if(n>0)
{
fun(n-1); // Calling itself only once
}
// some code
}
Program for tree recursion
C++
// C++ program to show Tree Recursion
#include <iostream>
usingnamespacestd;
// Recursive function
voidfun(intn)
{
if(n > 0)
{
cout << " "<< n;
// Calling once
fun(n - 1);
// Calling twice
fun(n - 1);
}
}
// Driver code
intmain()
{
fun(3);
return0;
}
// This code is contributed by shivanisinghss2110
C
// C program to show Tree Recursion
#include <stdio.h>
// Recursive function
voidfun(intn)
{
if(n > 0) {
printf("%d ", n);
// Calling once
fun(n - 1);
// Calling twice
fun(n - 1);
}
}
// Driver code
intmain()
{
fun(3);
return0;
}
Java
// Java program to show Tree Recursion
classGFG
{
// Recursive function
staticvoidfun(intn)
{
if(n > 0) {
System.out.print(" "+ n);
// Calling once
fun(n - 1);
// Calling twice
fun(n - 1);
}
}
// Driver code
publicstaticvoidmain(String[] args)
{
fun(3);
}
}
// This code is contributed by shivanisinghss2110
Python3
# C++ program to show Tree Recursion
# Recursive function
deffun(n):
if(n > 0):
print(n, end=" ")
# Calling once
fun(n -1)
# Calling twice
fun(n -1)
# Driver code
fun(3)
# This code is contributed by shivanisinghss2110
C#
// C# program to show Tree Recursion
usingSystem;
classGFG
{
// Recursive function
staticvoidfun(intn)
{
if(n > 0) {
Console.Write(" "+ n);
// Calling once
fun(n - 1);
// Calling twice
fun(n - 1);
}
}
// Driver code
publicstaticvoidMain(String[] args)
{
fun(3);
}
}
// This code is contributed by shivanisinghss2110
Javascript
<script>
// JavaScript program to show Tree Recursion
// Recursive function
functionfun(n)
{
if(n > 0) {
document.write(" "+ n);
// Calling once
fun(n - 1);
// Calling twice
fun(n - 1);
}
}
// Driver code
fun(3);
// This code is contributed by shivanisinghss2110
</script>
Output
3 2 1 1 2 1 1
Let’s understand the example by tracing tree of recursive function. That is how the calls are made and how the outputs are produced.
Time Complexity For Tree Recursion: O(2^n) Space Complexity For Tree Recursion: O(n) Note: Time & Space Complexity is given for this specific example. It may vary for another example.
Nested Recursion: In this recursion, a recursive function will pass the parameter as a recursive call. That means “recursion inside recursion”. Let see the example to understand this recursion. Example:
C++
// C++ program to show Nested Recursion
#include <iostream>
usingnamespacestd;
intfun(intn)
{
if(n > 100)
returnn - 10;
// A recursive function passing parameter
// as a recursive call or recursion inside
// the recursion
returnfun(fun(n + 11));
}
// Driver code
intmain()
{
intr;
r = fun(95);
cout << " "<< r;
return0;
}
// This code is contributed by shivanisinghss2110
C
// C program to show Nested Recursion
#include <stdio.h>
intfun(intn)
{
if(n > 100)
returnn - 10;
// A recursive function passing parameter
// as a recursive call or recursion
// inside the recursion
returnfun(fun(n + 11));
}
// Driver code
intmain()
{
intr;
r = fun(95);
printf("%d\n", r);
return0;
}
Java
// Java program to show Nested Recursion
importjava.util.*;
classGFG {
staticintfun(intn)
{
if(n > 100)
returnn - 10;
// A recursive function passing parameter
// as a recursive call or recursion
// inside the recursion
returnfun(fun(n + 11));
}
// Driver code
publicstaticvoidmain(String args[])
{
intr;
r = fun(95);
System.out.print(" "+ r);
}
}
// This code is contributed by shivanisinghss2110
Python3
# Python program to show Nested Recursion
deffun(n):
if(n > 100):
returnn -10
# A recursive function passing parameter
# as a recursive call or recursion inside
# the recursion
returnfun(fun(n +11))
# Driver code
r =fun(95)
print("", r)
# This code is contributed by shivanisinghss2110
C#
// C# program to show Nested Recursion
usingSystem;
classGFG {
staticintfun(intn)
{
if(n > 100)
returnn - 10;
// A recursive function passing parameter
// as a recursive call or recursion
// inside the recursion
returnfun(fun(n + 11));
}
// Driver code
publicstaticvoidMain(String []args)
{
intr;
r = fun(95);
Console.Write(" "+ r);
}
}
// This code is contributed by shivanisinghss2110
Javascript
<script>
// JavaScript program to show Nested Recursion
functionfun( n)
{
if(n > 100)
returnn - 10;
// A recursive function passing parameter
// as a recursive call or recursion
// inside the recursion
returnfun(fun(n + 11));
}
// Driver code
varr;
r = fun(95);
document.write(" "+ r);
// This code is contributed by shivanisinghss2110
</script>
Output
91
Let’s understand the example by tracing tree of recursive function. That is how the calls are made and how the outputs are produced.
2. Indirect Recursion: In this recursion, there may be more than one functions and they are calling one another in a circular manner.
From the above diagram fun(A) is calling for fun(B), fun(B) is calling for fun(C) and fun(C) is calling for fun(A) and thus it makes a cycle.
Example:
C++
// C++ program to show Indirect Recursion
#include <iostream>
usingnamespacestd;
voidfunB(intn);
voidfunA(intn)
{
if(n > 0) {
cout <<" "<< n;
// fun(A) is calling fun(B)
funB(n - 1);
}
}
voidfunB(intn)
{
if(n > 1) {
cout <<" "<< n;
// fun(B) is calling fun(A)
funA(n / 2);
}
}
// Driver code
intmain()
{
funA(20);
return0;
}
// this code is contributed by shivanisinghss2110
C
// C program to show Indirect Recursion
#include <stdio.h>
voidfunB(intn);
voidfunA(intn)
{
if(n > 0) {
printf("%d ", n);
// Fun(A) is calling fun(B)
funB(n - 1);
}
}
voidfunB(intn)
{
if(n > 1) {
printf("%d ", n);
// Fun(B) is calling fun(A)
funA(n / 2);
}
}
// Driver code
intmain()
{
funA(20);
return0;
}
Java
// Java program to show Indirect Recursion
importjava.io.*;
classGFG{
staticvoidfunA(intn)
{
if(n > 0) {
System.out.print(" "+n);
// Fun(A) is calling fun(B)
funB(n - 1);
}
}
staticvoidfunB(intn)
{
if(n > 1) {
System.out.print(" "+n);
// Fun(B) is calling fun(A)
funA(n / 2);
}
}
// Driver code
publicstaticvoidmain (String[] args)
{
funA(20);
}
}
// This code is contributed by shivanisinghss2110
C#
// C# program to show Indirect Recursion
usingSystem;
classGFG{
staticvoidfunA(intn)
{
if(n > 0) {
Console.Write(" "+n);
// Fun(A) is calling fun(B)
funB(n - 1);
}
}
staticvoidfunB(intn)
{
if(n > 1) {
Console.Write(" "+n);
// Fun(B) is calling fun(A)
funA(n / 2);
}
}
// Driver code
publicstaticvoidMain (String[] args)
{
funA(20);
}
}
// This code is contributed by shivanisinghss2110
Python3
# Python program to show Indirect Recursion
deffunA(n):
if(n > 0):
print("", n, end='')
# Fun(A) is calling fun(B)
funB(n -1)
deffunB( n):
if(n > 1):
print("", n, end='')
# Fun(B) is calling fun(A)
funA(n //2)
# Driver code
funA(20)
# This code is contributed by shivanisinghss2110
Javascript
<script>
// JavaScript program to show Indirect Recursion
functionfunA(n)
{
if(n > 0) {
document.write(n.toFixed(0) + "</br>");
// Fun(A) is calling fun(B)
funB(n - 1);
}
}
functionfunB(n)
{
if(n > 1) {
document.write(n.toFixed(0) + "</br>");
// Fun(B) is calling fun(A)
funA(n / 2);
}
}
// Driver code
funA(20);
// this code is contributed by shivanisinghss2110
</script>
Output
20 19 9 8 4 3 1
Let’s understand the example by tracing tree of recursive function. That is how the calls are made and how the outputs are produced.
This article is contributed by AmiyaRanjanRout. If you like neveropen and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@neveropen.tech.See your article appearing on the neveropen main page and help other Geeks.
Feeling lost in the world of random DSA topics, wasting time without progress? It’s time for a change! Join our DSA course, where we’ll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 neveropen!