Open In App

What is Tail Recursion

Last Updated : 20 Jun, 2023
Comments
Improve
Suggest changes
Like Article
Like
Save
Share
Report
News Follow

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 C++ function print() is tail recursive.

C




// An example of tail recursive function
 
void print(int n)
{
    if (n < 0)
        return;
    printf("%d ", n);
 
    // The last executed statement is recursive call
    print(n - 1);
}


C++




// An example of tail recursive function
 
static void print(int n)
{
    if (n < 0)
        return;
    cout << " " << n;
  
    // The last executed statement is recursive call
    print(n - 1);
}
 
// This code is contributed by Aman Kumar


Java




// An example of tail recursive function
 
static void print(int n)
{
    if (n < 0)
        return;
 
    System.out.print(" " + n);
 
    // The last executed statement
    // is recursive call
    print(n - 1);
}
 
// This code is contributed by divyeh072019


Python3




# An example of tail recursive function
 
 
def prints(n):
 
    if (n < 0):
        return
    print(str(n), end=' ')
 
    # The last executed statement is recursive call
    prints(n-1)
 
    # This code is contributed by Pratham76
    # improved by ashish2021


C#




// An example of tail recursive function
 
static void print(int n)
{
    if (n < 0)
        return;
 
    Console.Write(" " + n);
 
    // The last executed statement
    // is recursive call
    print(n - 1);
}
 
// This code is contributed by divyeshrabadiya07


Javascript




<script>
// An example of tail recursive function
function print(n)
{
    if (n < 0)
      return;
    
    document.write(" " + n);
    
    // The last executed statement
      // is recursive call
    print(n - 1);
}
 
// This code is contributed by Rajput-Ji
</script>


Time Complexity: O(n)
Auxiliary Space: O(n)

Need for Tail Recursion:

The tail recursive functions are considered better than non-tail recursive functions as tail-recursion can be optimized by the compiler. 

Compilers usually execute recursive procedures by using a stack. This stack consists of all the pertinent information, including the parameter values, for each recursive call. When a procedure is called, its information is pushed onto a stack, and when the function terminates the information is popped out of the stack. Thus for the non-tail-recursive functions, the stack depth (maximum amount of stack space used at any time during compilation) is more. 

The idea used by compilers to optimize tail-recursive functions is simple, since the recursive call is the last statement, there is nothing left to do in the current function, so saving the current function’s stack frame is of no use (See this for more details).

Can a non-tail-recursive function be written as tail-recursive to optimize it?

Consider the following function to calculate the factorial of n. 

It is a non-tail-recursive function. Although it looks like a tail recursive at first look. If we take a closer look, we can see that the value returned by fact(n-1) is used in fact(n). So the call to fact(n-1) is not the last thing done by fact(n).

C++




#include <iostream>
using namespace std;
 
// A NON-tail-recursive function.  The function is not tail
// recursive because the value returned by fact(n-1) is used
// in fact(n) and call to fact(n-1) is not the last thing
// done by fact(n)
unsigned int fact(unsigned int n)
{
    if (n <= 0)
        return 1;
 
    return n * fact(n - 1);
}
 
// Driver program to test above function
int main()
{
    cout << fact(5);
    return 0;
}


Java




class GFG {
 
    // A NON-tail-recursive function.
    // The function is not tail
    // recursive because the value
    // returned by fact(n-1) is used
    // in fact(n) and call to fact(n-1)
    // is not the last thing done by
    // fact(n)
    static int fact(int n)
    {
        if (n == 0)
            return 1;
 
        return n * fact(n - 1);
    }
 
    // Driver program
    public static void main(String[] args)
    {
        System.out.println(fact(5));
    }
}
 
// This code is contributed by Smitha.


Python3




# A NON-tail-recursive function.
# The function is not tail
# recursive because the value
# returned by fact(n-1) is used
# in fact(n) and call to fact(n-1)
# is not the last thing done by
# fact(n)
 
 
def fact(n):
    if (n == 0):
        return 1
    return n * fact(n-1)
 
 
# Driver program to test
# above function
if __name__ == '__main__':
    print(fact(5))
 
# This code is contributed by Smitha.


C#




using System;
 
class GFG {
 
    // A NON-tail-recursive function.
    // The function is not tail
    // recursive because the value
    // returned by fact(n-1) is used
    // in fact(n) and call to fact(n-1)
    // is not the last thing done by
    // fact(n)
    static int fact(int n)
    {
        if (n == 0)
            return 1;
 
        return n * fact(n - 1);
    }
 
    // Driver program to test
    // above function
    public static void Main() { Console.Write(fact(5)); }
}
 
// This code is contributed by Smitha


PHP




<?php
// A NON-tail-recursive function.
// The function is not tail
// recursive because the value
// returned by fact(n-1) is used in
// fact(n) and call to fact(n-1) is
// not the last thing done by fact(n)
 
function fact( $n)
{
    if ($n == 0) return 1;
 
    return $n * fact($n - 1);
}
 
    // Driver Code
    echo fact(5);
 
// This code is contributed by Ajit
?>


Javascript




<script>
 
// A NON-tail-recursive function.
// The function is not tail
// recursive because the value
// returned by fact(n-1) is used
// in fact(n) and call to fact(n-1)
// is not the last thing done by
// fact(n)
function fact(n)
{
    if (n == 0)
        return 1;
  
    return n * fact(n - 1);
}
 
// Driver code
document.write(fact(5));
 
// This code is contributed by divyeshrabadiya07
 
</script>


Output

120

Time Complexity: O(n)
Auxiliary Space: O(n)

The above function can be written as a tail-recursive function. The idea is to use one more argument and accumulate the factorial value in the second argument. When n reaches 0, return the accumulated value.

Below is the implementation using a tail-recursive function.

C++




#include <iostream>
using namespace std;
 
// A tail recursive function to calculate factorial
unsigned factTR(unsigned int n, unsigned int a)
{
    if (n <= 1)
        return a;
 
    return factTR(n - 1, n * a);
}
 
// A wrapper over factTR
unsigned int fact(unsigned int n) { return factTR(n, 1); }
 
// Driver program to test above function
int main()
{
    cout << fact(5);
    return 0;
}


Java




// Java Code for Tail Recursion
 
class GFG {
 
    // A tail recursive function
    // to calculate factorial
    static int factTR(int n, int a)
    {
        if (n <= 0)
            return a;
 
        return factTR(n - 1, n * a);
    }
 
    // A wrapper over factTR
    static int fact(int n) { return factTR(n, 1); }
 
    // Driver code
    static public void main(String[] args)
    {
        System.out.println(fact(5));
    }
}
 
// This code is contributed by Smitha.


Python3




# A tail recursive function
# to calculate factorial
 
 
def fact(n, a=1):
 
    if (n <= 1):
        return a
 
    return fact(n - 1, n * a)
 
 
# Driver program to test
# above function
print(fact(5))
 
# This code is contributed
# by Smitha
# improved by Ujwal, ashish2021


C#




// C# Code for Tail Recursion
 
using System;
 
class GFG {
 
    // A tail recursive function
    // to calculate factorial
    static int factTR(int n, int a)
    {
        if (n <= 0)
            return a;
 
        return factTR(n - 1, n * a);
    }
 
    // A wrapper over factTR
    static int fact(int n) { return factTR(n, 1); }
 
    // Driver code
    static public void Main()
    {
        Console.WriteLine(fact(5));
    }
}
 
// This code is contributed by Ajit.


PHP




<?php
 
// A tail recursive function
// to calculate factorial
function factTR($n, $a)
{
    if ($n <= 0) return $a;
 
    return factTR($n - 1, $n * $a);
}
 
// A wrapper over factTR
function fact($n)
{
    return factTR($n, 1);
}
 
// Driver program to test
// above function
echo fact(5);
 
// This code is contributed
// by Smitha
?>


Javascript




<script>
 
// Javascript Code for Tail Recursion
 
// A tail recursive function
// to calculate factorial
function factTR(n, a)
{
    if (n <= 0)
        return a;
  
    return factTR(n - 1, n * a);
}
  
// A wrapper over factTR
function fact(n)
{
    return factTR(n, 1);
}
 
// Driver code
document.write(fact(5));
 
// This code is contributed by rameshtravel07
     
</script>


Output

120

Time Complexity: O(n)
Auxiliary Space: O(1)

Next articles on this topic: 

 



Previous Article
Next Article

Similar Reads

Tail vs. Non-Tail Recursion
Tail recursion and Non-tail recursion are two types of recursive functions in computer programming. In this post we will deep dive into what are the major differences between the tail and non-tail recursion. 1) Definition:Tail recursion is defined by having the recursive call as the last operation in the function before returningfunction factorial
3 min read
Why is Tail Recursion optimization faster than normal Recursion?
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. What is non-tail recursion? Non-tail or head recursion is defined as a recursive function in which the recursive call is the f
4 min read
Tail recursion to calculate sum of array elements.
Given an array A[], we need to find the sum of its elements using Tail Recursion Method. We generally want to achieve tail recursion (a recursive function where recursive call is the last thing that function does) so that compilers can optimize the code. Basically, if recursive call is the last statement, the compiler does not need to save the stat
3 min read
Tail Recursion in Python Without Introspection
These are the special type of recursive functions, where the last statement executed inside the function is the call to the function itself. Advantages of implementing Tail Recursive functionIn this concept, the compiler doesn't need to save the stack frame of the function after the tail-recursive call is executed.It uses less memory as compared to
4 min read
Tail Recursion for Fibonacci
Write a tail recursive function for calculating the n-th Fibonacci number. Examples : Input : n = 4 Output : fib(4) = 3 Input : n = 9 Output : fib(9) = 34 Prerequisites : Tail Recursion, Fibonacci numbersA recursive function is tail recursive when the recursive call is the last thing executed by the function. Writing a tail recursion is little tric
4 min read
Tail Recursion in Python
Tail recursion is a special case of recursion where the recursive call is the last operation in the function. Therefore, the function returns the result of the recursive call directly, without performing any additional computation after the call. In some languages, tail-recursive functions can be transformed into iterative loops to avoid growing th
3 min read
Sorted insert in a doubly linked list with head and tail pointers
A Doubly linked list is a linked list that consists of a set of sequentially linked records called nodes. Each node contains two fields that are references to the previous and to the next node in the sequence of nodes. The task is to create a doubly linked list by inserting nodes such that list remains in ascending order on printing from left to ri
10 min read
What is a Proper Tail Call?
What is a Proper Tail Call? Proper tail calls (PTC) is a programming language feature that enables memory-efficient recursive algorithms. Tail call optimization is where you can avoid allocating a new stack frame for a function because the calling function will simply return the value it gets from the called function. The most common use is tail-re
5 min read
Tail Call Optimisation in C
In C programming, Tail Call Optimization (TCO) is a technique that eliminates the need for an additional stack frame to store the data of another function by reusing the current function's stack frame. This optimization technique is only possible for tail function calls. What is Tail Call?The tail call is the type of function call where another fun
4 min read
QuickSort Tail Call Optimization (Reducing worst case space to Log n )
Prerequisite : Tail Call Elimination In QuickSort, partition function is in-place, but we need extra space for recursive function calls. A simple implementation of QuickSort makes two calls to itself and in worst case requires O(n) space on function call stack. The worst case happens when the selected pivot always divides the array such that one pa
12 min read
Tail Call Elimination
We have discussed (in tail recursion) that a recursive function is tail recursive if the recursive call is the last thing executed by the function. C/C++ Code // An example of tail recursive function void print(int n) { if (n &lt; 0) return; cout &lt;&lt; &quot; &quot; &lt;&lt; n; // The last executed statement is recursive call print(n-1); } Java
10 min read
The Great Tree-List Recursion Problem.
Asked by Varun Bhatia. Question: Write a recursive function treeToList(Node root) that takes an ordered binary tree and rearranges the internal pointers to make a circular doubly linked list out of the tree nodes. The”previous” pointers should be stored in the “small” field and the “next” pointers should be stored in the “large” field. The list sho
1 min read
Inorder Tree Traversal without recursion and without stack!
Using Morris Traversal, we can traverse the tree without using stack and recursion. The idea of Morris Traversal is based on Threaded Binary Tree. In this traversal, we first create links to Inorder successor and print the data using these links, and finally revert the changes to restore original tree. 1. Initialize current as root 2. While current
9 min read
Practice questions for Linked List and Recursion
Assume the structure of a Linked List node is as follows. C/C++ Code struct Node { int data; struct Node *next; }; // This code is contributed by SHUBHAMSINGH10 C/C++ Code struct Node { int data; struct Node *next; }; Java Code static class Node { int data; Node next; }; // This code is contributed by shubhamsingh10 C/C++ Code class Node: def __ini
11 min read
Practice Questions for Recursion | Set 1
Explain the functionality of the following functions. Question 1 C/C++ Code int fun1(int x, int y) { if (x == 0) return y; else return fun1(x - 1, x + y); } C/C++ Code int fun1(int x, int y) { if (x == 0) return y; else return fun1(x - 1, x + y); } Java Code static int fun1(int x, int y) { if (x == 0) return y; else return fun1(x - 1, x + y); } C/C
5 min read
Practice Questions for Recursion | Set 2
Explain the functionality of the following functions. Question 1 C/C++ Code /* Assume that n is greater than or equal to 1 */ int fun1(int n) { if (n == 1) return 0; else return 1 + fun1(n / 2); } Java Code /* Assume that n is greater than or equal to 1 */ static int fun1(int n) { if (n == 1) return 0; else return 1 + fun1(n / 2); } C/C++ Code # As
3 min read
Practice Questions for Recursion | Set 4
Question 1 Predict the output of the following program. C/C++ Code #include &lt;iostream&gt; using namespace std; void fun(int x) { if(x &gt; 0) { fun(--x); cout &lt;&lt; x &lt;&lt;&quot; &quot;; fun(--x); } } int main() { int a = 4; fun(a); return 0; } // This code is contributed by SHUBHAMSINGH10 C/C++ Code #include&lt;stdio.h&gt; void fun(int x)
6 min read
Practice Questions for Recursion | Set 5
Question 1Predict the output of the following program. What does the following fun() do in general? C/C++ Code #include &lt;iostream&gt; using namespace std; int fun(int a, int b) { if (b == 0) return 0; if (b % 2 == 0) return fun(a + a, b/2); return fun(a + a, b/2) + a; } int main() { cout &lt;&lt; fun(4, 3) ; return 0; } // This code is contribut
5 min read
Practice Questions for Recursion | Set 7
Question 1 Predict the output of the following program. What does the following fun() do in general? C/C++ Code #include &lt;iostream&gt; using namespace std; int fun(int n, int* fp) { int t, f; if (n &lt;= 2) { *fp = 1; return 1; } t = fun(n - 1, fp); f = t + *fp; *fp = t; return f; } int main() { int x = 15; cout &lt;&lt; fun(5, &amp;x) &lt;&lt;
4 min read
Print 1 to 100 in C++ Without Loops and Recursion
We can print 1 to 100 without using loops and recursion using three approaches discussed below: 1) Template Metaprogramming: Templates in C++ allow non-datatypes also as parameters. Non-datatype means a value, not a datatype. Example: C/C++ Code // CPP Program to print 1 to 100 // without loops and recursion #include &lt;iostream&gt; using namespac
3 min read
Print ancestors of a given binary tree node without recursion
Given a Binary Tree and a key, write a function that prints all the ancestors of the key in the given binary tree.For example, consider the following Binary Tree 1 / \ 2 3 / \ / \ 4 5 6 7 / \ / 8 9 10 Following are different input keys and their ancestors in the above tree Input Key List of Ancestors ------------------------- 1 2 1 3 1 4 2 1 5 2 1
15 min read
Juggler Sequence | Set 2 (Using Recursion)
Juggler Sequence is a series of integer number in which the first term starts with a positive integer number a and the remaining terms are generated from the immediate previous term using the below recurrence relation : [Tex]a_{k+1}=\begin{Bmatrix} \lfloor a_{k}^{1/2} \rfloor &amp; for \quad even \quad a_k\\ \lfloor a_{k}^{3/2} \rfloor &amp; for \q
4 min read
Remove duplicates from a sorted linked list using recursion
Write a removeDuplicates() function which takes a list sorted in non-decreasing order and deletes any duplicate nodes from the list. The list should only be traversed once. For example if the linked list is 11-&gt;11-&gt;11-&gt;21-&gt;43-&gt;43-&gt;60 then removeDuplicates() should convert the list to 11-&gt;21-&gt;43-&gt;60. Algorithm: Traverse th
8 min read
Reverse a Doubly linked list using recursion
Given a doubly linked list. Reverse it using recursion. Original Doubly linked list Reversed Doubly linked list We have discussed Iterative solution to reverse a Doubly Linked List Algorithm: If list is empty, return Reverse head by swapping head-&gt;prev and head-&gt;next If prev = NULL it means that list is fully reversed. Else reverse(head-&gt;p
9 min read
Sum of natural numbers using recursion
Given a number n, find sum of first n natural numbers. To calculate the sum, we will use a recursive function recur_sum().Examples : Input : 3 Output : 6 Explanation : 1 + 2 + 3 = 6 Input : 5 Output : 15 Explanation : 1 + 2 + 3 + 4 + 5 = 15 Below is code to find the sum of natural numbers up to n using recursion : C/C++ Code // C++ program to find
3 min read
Postorder traversal of Binary Tree without recursion and without stack
Given a binary tree, perform postorder traversal. Prerequisite - Inorder/preorder/postorder traversal of tree We have discussed the below methods for postorder traversal. 1) Recursive Postorder Traversal. 2) Postorder traversal using Stack. 2) Postorder traversal using two Stacks. Approach 1 The approach used is based on using an unordered set to k
15 min read
Product of 2 Numbers using Recursion
Given two numbers x and y find the product using recursion. Examples : Input : x = 5, y = 2 Output : 10 Input : x = 100, y = 5 Output : 500 Method 1) If x is less than y, swap the two variables value 2) Recursively find y times the sum of x 3) If any of them become zero, return 0 C/C++ Code // C++ Program to find Product // of 2 Numbers using Recur
4 min read
Program for length of a string using recursion
Given a string calculate length of the string using recursion. Examples: Input : str = "abcd" Output :4 Input : str = "GEEKSFORGEEKS" Output :13 We have discussed 5 Different methods to find length of a string in C++ How to find length of a string without string.h and loop in C? Algorithm: recLen(str) { If str is NULL return 0 Else return 1 + recLe
3 min read
Print alternate nodes of a linked list using recursion
Given a linked list, print alternate nodes of this linked list. Examples : Input : 1 -&gt; 2 -&gt; 3 -&gt; 4 -&gt; 5 -&gt; 6 -&gt; 7 -&gt; 8 -&gt; 9 -&gt; 10 Output : 1 -&gt; 3 -&gt; 5 -&gt; 7 -&gt; 9 Input : 10 -&gt; 9 Output : 10 Recursive Approach : Initialize a static variable(say flag) If flag is odd print the node increase head and flag by 1,
6 min read
Leaf nodes from Preorder of a Binary Search Tree (Using Recursion)
Given Preorder traversal of a Binary Search Tree. Then the task is to print leaf nodes of the Binary Search Tree from the given preorder. Examples : Input : preorder[] = {890, 325, 290, 530, 965}; Output : 290 530 965 Tree represented is, 890 / \ 325 965 / \ 290 530 Input : preorder[] = { 3, 2, 4 }; Output : 2 4 In this post, a simple recursive sol
5 min read
Practice Tags :