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++
void print( int n)
{
if (n < 0)
return ;
cout << " " << n;
print(n-1);
}
|
Java
static void print( int n)
{
if (n < 0 )
return ;
System.out.print( " " + n);
print(n - 1 );
}
|
Python3
def display(n):
if (n < 0 ):
return
print ( " " , n)
display(n - 1 )
|
C#
static void print( int n)
{
if (n < 0)
return ;
Console.Write( " " + n);
print(n - 1);
}
|
Javascript
<script>
function print(n)
{
if (n < 0)
return ;
document.write( " " + n);
print(n-1);
}
</script>
|
We also discussed that a tail-recursive is better than a non-tail recursive as tail-recursion can be optimized by modern compilers. Modern compiler basically does tail call elimination to optimize the tail-recursive code.
If we take a closer look at the above function, we can remove the last call with goto. Below are examples of tail call elimination.
C++
void print( int n)
{
start:
if (n < 0)
return ;
cout << " " << n;
n = n-1
goto start;
}
|
Java
public static void print( int n)
{
start:
if (n < 0 )
return ;
System.out.print( " " +n);
n = n - 1
goto start;
}
|
Python3
def print (n):
while n > = 0 :
print ( " " , n)
n = n - 1
|
C#
public static void print( int n)
{
while (n>=0)
{
if (n < 0)
return ;
Console.Write( " " + n);
n = n-1;
}
}
|
Javascript
function print( n)
{
while (n>=0)
{
if (n < 0)
return ;
Console.Write( " " + n);
n = n-1;
}
}
|
QuickSort : One more example
QuickSort is also tail recursive (Note that MergeSort is not tail recursive, this is also one of the reasons why QuickSort performs better)
C++
void quickSort( int arr[], int low, int high)
{
if (low < high)
{
int pi = partition(arr, low, high);
quickSort(arr, low, pi - 1);
quickSort(arr, pi + 1, high);
}
}
|
Java
static void quickSort( int [] arr, int low, int high)
{
if (low < high)
{
int pi = partition(arr, low, high);
quickSort(arr, low, pi - 1 );
quickSort(arr, pi + 1 , high);
}
}
|
Python3
def quickSort(arr,low,high):
if (low<high):
pi = partition(arr,low,high)
quickSort(arr,low,pi - 1 )
quickSort(arr,pi + 1 ,high)
|
C#
using System;
class GFG{
static void quickSort( int [] arr, int low, int high)
{
if (low < high)
{
int pi = partition(arr, low, high);
quickSort(arr, low, pi - 1);
quickSort(arr, pi + 1, high);
}
}
}
|
Javascript
function quickSort( arr, low, high)
{
if (low < high)
{
let pi = partition(arr, low, high);
quickSort(arr, low, pi - 1);
quickSort(arr, pi + 1, high);
}
}
|
The above function can be replaced by following after tail call elimination.
C++
void quickSort( int arr[], int low, int high)
{
start:
if (low < high)
{
int pi = partition(arr, low, high);
quickSort(arr, low, pi - 1);
low = pi+1;
high = high;
goto start;
}
}
|
Java
void quickSort( int arr[], int low, int high) {
start:
if (low < high) {
int pi = partition(arr, low, high);
quickSort(arr, low, pi - 1 );
low = pi + 1 ;
high = high;
goto start;
}
}
|
Python3
def quickSort(arr, low, high):
def start():
nonlocal low, high
if low < high:
pi = partition(arr, low, high)
quickSort(arr, low, pi - 1 )
low = pi + 1
start()
start()
|
C#
using System;
class QuickSort {
int Partition( int [] arr, int low, int high) {
int pivot = arr[high];
int i = low - 1;
for ( int j = low; j < high; j++) {
if (arr[j] < pivot) {
i++;
int temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
}
int temp1 = arr[i + 1];
arr[i + 1] = arr[high];
arr[high] = temp1;
return i + 1;
}
void Sort( int [] arr, int low, int high) {
Action start = null ;
start = () => {
if (low < high) {
int pi = Partition(arr, low, high);
Sort(arr, low, pi - 1);
low = pi + 1;
start();
}
};
start();
}
void PrintArray( int [] arr) {
int n = arr.Length;
for ( int i = 0; i < n; i++) {
Console.Write(arr[i] + " " );
}
Console.WriteLine();
}
static void Main() {
QuickSort quickSort = new QuickSort();
int [] arr = { 64, 25, 12, 22, 11 };
int n = arr.Length;
Console.WriteLine( "Unsorted array:" );
quickSort.PrintArray(arr);
quickSort.Sort(arr, 0, n - 1);
Console.WriteLine( "Sorted array:" );
quickSort.PrintArray(arr);
}
}
|
Javascript
function quickSort(arr, low, high) {
let start = () => {
if (low < high) {
let pi = partition(arr, low, high);
quickSort(arr, low, pi - 1);
low = pi + 1;
high = high;
start();
}
};
start();
}
|
Therefore job for compilers is to identify tail recursion, add a label at the beginning and update parameter(s) at the end followed by adding the last goto statement.
Function stack frame management in Tail Call Elimination :
Recursion uses a stack to keep track of function calls. With every function call, a new frame is pushed onto the stack which contains local variables and data of that call. Let’s say one stack frame requires O(1) i.e, constant memory space, then for N recursive call memory required would be O(N).
Tail call elimination reduces the space complexity of recursion from O(N) to O(1). As function call is eliminated, no new stack frames are created and the function is executed in constant memory space.
It is possible for the function to execute in constant memory space because, in tail recursive function, there are no statements after call statement so preserving state and frame of parent function is not required. Child function is called and finishes immediately, it doesn’t have to return control back to the parent function.
As no computation is performed on the returned value and no statements are left for execution, the current frame can be modified as per the requirements of the current function call. So there is no need to preserve stack frames of previous function calls and function executes in constant memory space. This makes tail recursion faster and memory-friendly.
Next Article:
QuickSort Tail Call Optimization (Reducing worst case space to Log n )
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above
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 geeks!