×

Recursion Program in Java

The recursion program in Java demonstrates the usage of recursion. The process by which a function/ method calls itself, again and again, is called recursion. Each recursive call is pushed to the stack. The function/ method upon which recursion calls are made is called the recursive method. Recursion is similar to iteration. However, recursion and iteration are not the same. The similarity is both recursion and iteration execute the same piece of code again and again. In a loop, there is a condition part that is responsible for the loop termination if evaluated as false. Whereas in recursion, there is a base case responsible for the termination of recursion. Before moving ahead in recursion, we must know the following two things:

1) The base case that will terminate the recursion.

2) Must know how to divide a bigger problem into smaller problems and then, dividing the smaller problems into even smaller subproblems and continue to do so until we reach the base case.

What is the base case?

A base case is a solution to a basic problem (elementary). That is, it cannot be further divided into a smaller problem. Let’s understand recursion by the factorial of a number.

Suppose we want to find the factorial of the number 5. Now, we split this problem into further smaller problems.

5! = 5 × 4!

Now, the problem is to find the factorial of 4, and this problem can also be reduced.

4! = 4 × 3!

Similarly, 3! is reduced to

3! = 3 × 2!

For 2! we have

2! = 2 × 1!

For 1! we have

1! = 1 × 0!

In Mathematics, 0! is defined as 1. Thus,

0! = 1

Now, we cannot reduce 0! to further smaller problems as the factorial of a negative number is not possible. Thus 0! = 1 is the base case of the factorial problem. The base case helps to break the recursion. In the absence of the base case, the recursion will keep on running infinitely and eventually result in the stack overflow. The stack overflow occurs because each recursive call consumes some memory (Remember! Each recursive call is pushed to the stack), and memory is limited, resulting in the stack overflow. Let’s see some applications of recursion.

Applications of Recursion

Some common applications of recursion are:

1) To find minimum value in an Array

Filename: MinimumValueExample.java

 // importing the class Arrays
import java.util.Arrays;
public class MinimumValueExample 
{
// Method for finding minimum element in the array   
static int findMin(int inputArr[], int index, int size)
{
    // base case
    if(size == 1)
    {
        return inputArr[index];
    }
    // recursively solving the problem by diving it in the smaller problems
    return Math.min( inputArr[index], findMin(inputArr, index + 1, size - 1));
}
public static void main(String argvs[]) 
{
    int numArr[] = { 27, 56, 90, 12, 120, 263 }; // input array
    // displaying the input array
    System.out.println("The input Array is : " + Arrays.toString(numArr));
    int length = numArr.length; // finding size of the input array
    int minVal = findMin(numArr, 0, length); // calling the method and storing its result
    // displaying the final outcome
    System.out.print("Minimum element of the input array is: " + minVal + " \n ");
}
} 

Output:

 The input Array is : [27, 56, 90, 12, 120, 263]
Minimum element of the input array is: 12 

Explanation: In the code, the method findMin() is recursively finding the minimum value element of the input array. In each recursive call, the method findMin() splits the larger array into the smaller array and keeps reducing the size of the array until the size of the input array is 1, i.e., there is only one element present in the array. If an array contains only one element, then that element is the minimum element. It forms the base case of the problem. Let’s learn how recursion work here.

In order to find the minimum value of the input array containing 6 elements, we can find the minimum value in the last 5 elements of the array and compare it with the first element. Suppose x is the minimum value of the last 5 elements, then compare x with the first element, i.e., 27. The minimum of x and 27 is our answer. The same thing is happening in the first recursive call. Mathematically,

Min of (27, 56, 90, 12, 120, 263) = Min of (27, Min of (56, 90 12, 120 263))

Similarly, for the second recursive call

Min of (27, Min of (56, 90 12, 120 263)) = Min of (27, Min of (56, Min of (90, 12, 120, 263)))

For the third recursive call

Min of (27, Min of (56, Min of (90, 12, 120, 263))) = Min of (27, Min of (56, Min of (90, Min of (12, 120, 263))))

For the fourth recursive call

Min of (27, Min of (56, Min of (90, Min of (12, 120, 263)))) = Min of (27, Min of (56, Min of (90, Min of (12, Min of (120, 263)))))

For the fifth recursive call

Min of (27, Min of (56, Min of (90, Min of (12, Min of (120, 263))))) = Min of (27, Min of (56, Min of (90, Min of (12, Min of (120, Min of (263))))))

Now we reach the base case, i.e., Min of (263), which is 263.

As each recursive call is pushed to the stack, therefore first, the last recursive call comes into the picture. It is because a stack works on the LIFO (Last In First Out) principle.

Thus, the fifth recursive call is reduced to

Min of(27, Min of(56, Min of(90, Min of(12, Min of(120, 263))))) = Min of(27, Min of(56, Min of(90, Min of(12, Min of(120, 263)))))

We know the min of 120 and 263 is 120. Thus, for the fourth recursive call, we have

Min of(27, Min of(56, Min of(90, Min of(12, 120, 263)))) = Min of(27, Min of(56, Min of(90, Min of(12, 120))))

Minimum of 12 and 120 is 12. Hence, for the third recursive call

Min of(27, Min of(56, Min of(90, 12, 120, 263))) = Min of(27, Min of(56, Min of(90, 12)))

Similarly, for the second recursive call, we have

Min of (27, Min of ( 56, 90 12, 120 263)) = Min of(27, 12)

Minimum of 27 and 12 is 12, eventually, for the first recursive call

Min of (27, 56, 90, 12, 120, 263) = 12.

Hence, 12 is the minimum value of the input array.

Note that the recursion used in the above program is called tail recursion. Because the recursive calls are the last statements in the findMin() method.

2) To print a string in reverse order

Filename: ReverseStringExample.java

 public class ReverseStringExample
{
    // Method for printing the input string in the reverse order
    public static void reverseString(String str, int size, int index)
    {
        // Handling the base case
        if(index == size)
        {
            return;
        }
        // recursively printing the string in the reverse order
        reverseString(str, size, index + 1);
        // Printing the string in reverse order
        System.out.print(str.charAt(index));
    }
    public static void main(String argvs[])
    {
        String s = "apple"; // input string
        int length = s.length(); // calculating length of the input string
        // calling the method reverseString
        reverseString(s, length, 0);
    }
} 

Output:

elppa

Explanation: In the above program, we have used the in-built stack that stores each recursive call to reverse the input string. The print statement coming after the recursive call is pushed to the stack. In the first recursive call, the value of the variable index is 0. Thus, the statement System.out.print(str.charAt(0)); gets pushed to the stack. The following diagram shows the same.

Recursion Program in Java

For the second recursive call, the value of the index is 1. Hence, the statement System.out.print(str.charAt(1)); gets pushed to stack. The current state of the stack after the second recursive call is:

Recursion Program in Java

For the third recursive call, index = 2. Thus, the updated state after the third recursive call is:

Recursion Program in Java

Similarly, for the fourth recursive call index = 3, and the stack stores four statements. As we have shown in the following diagram.

Recursion Program in Java

After the fifth and final recursive call, the stack contains five statements. Observe the following diagram.

Recursion Program in Java

After the fifth recursive call, the value of the index is 5. Thus, we meet the base case, and the recursion is terminated. Now, whatever statement is present in the stack gets executed one by one. Since a stack works on the LIFO principle, the statement System.out.print(str.charAt(4)); gets executed first. In the string apple, the character present at the 4th index is e. Thus, the letter e is printed first. Then, the statement System.out.print(str.charAt(3)); is executed and the letter l is printed. After that, the statement System.out.print(str.charAt(2)); is executed and the letter p is printed. Then, System.out.print(str.charAt(1)); prints the letter p, and eventually the letter a is printed. Thus, it prints elppa.

The recursion used in the above program is called head recursion. In the head recursion, the recursive statement is not the last statement of the method upon which recursion is called. In the code, after the recursion, there is a print statement.

Difference between Iteration and Recursion

IterationRecursion
Iteration is applicable to loops.

Recursion is applicable to methods.
Executes the code again and again until the condition part of the loop is evaluated as false.

Executes the code again and again until the base condition is met.
Memory consumption is less.Memory consumption is more as each recursive call is pushed to the stack.  
Time consumption is less.Time consumption is more because each recursive call takes some time.
Iteration can continue forever if the condition part of the loop is always true.If the base condition is not mentioned or not reached, the recursion stops due to stack overflow error.
Iteration is verbose. Hence, easy to understand.Recursion is not verbose. Hence, difficult to understand.

Which one to choose: Iteration or Recursion or both?

From the above table, one can conclude that iteration should take precedence over recursion, which is true to some extent but not always. There are many scenarios where writing code using the iterative approach becomes extremely difficult. For example, the Tower of Hanoi puzzle cannot be solved with the help of a loop.

Traversal of a tree is another example where recursion takes precedence over iteration. Thus, we observe that even though iteration is fast, knowing recursion is a must.

Recursion and iteration, when used together, are a deadly combination. There are many scenarios where it is not possible to solve the problem either using iteration or recursion. However, if recursion and iteration are both used simultaneously, we can solve the problem. One such example is to print the permutation of a string.

Permutation of a String

Suppose, we have a string abc. Then, the permutation of string abc is:

abc      acb      bac      bca      cab      cba

The approach is to fix the position of one of the letters of the given string at the first position and then do the permutation of the rest of the letters of the string. The steps involved to permute the letters of the string abc is given below.

Step 1: First, we fix the letter a at the first position. Then, the permutation of the remaining letters are: bc and cb. Hence, we get abc and acb. In order to achieve the permutations of b and c. First, we fix b at the second position and c at the third position to get bc. Then, c at the second position and b at the third position to get cb.

Step 2: Now, we fix letter b at the first position. Hence, the remaining letters are a and c, and their permutation is ac and ca. This time, we get bac and bca. The permutations of the letters a and c are done in the same way we did in step 1.

Step 3: Similarly, we fix c at the first position and do the permutation of the rest of the letters to get cab and cba.

The following diagram demonstrates the same.

Recursion Program in Java

In the diagram, if we look at the first three arrows, we see Swap(a, a), Swap(a, b), Swap(a, c) written on it. Swap(a, a) means; first, we have fixed the letter a at the first position. Swap(a, b) means b is fixed at the first position, and Swap(a, c) means c is fixed at the first position. In a similar way, whatever is written on the other arrows can also be explained.

Now, observe the following Java program.

Filename: StringPermutation.java

 public class StringPermutation
{
    // for swapping characters of the input string
    public static String swap(String s, int i,  int j)
    {
        // convreting the string into character array
        char[] ch = s.toCharArray();
        // swapping characters of the index i and j
        char t = ch[i];
        ch[i] = ch[j];
        ch[j] = t;
        // converting the character array into a new String
        String newString = new String(ch);
        //returning the new string
        return newString;
    }
    // Method to find the permutation of the input string.
    // The method takes three arguments: first is the input string
    // second is the starting index, and third is the ending index
    public static void permuteString(String s, int st, int end)
    {
        // Handling the base case
        if(st == end)
        {
            System.out.println(s); // printing the string
            return;
        }
        // iterating over every character of the input string
        for(int i = st; i <= end; i++)
        {
            // In the first swap, we are
            // fixing the letters of the input string at the index st.
            String swappedString = swap(s, st, i);
            // recursive call for the next character
            permuteString(swappedString, st + 1, end);
            // second swap for doing backtracking to re-store
            // the state of string that was present before the recursive call
            swap(swappedString, st, i);
        }
    }
    public static void main(String argvs[])
    {
        String str = "abc"; // input string
        int size = str.length(); // calculating length of the input string
        // calling the method permuteString()
        permuteString(str, 0, size - 1);
    }
} 

Output:

 abc
acb
bac
bca
cba
cab 

Explanation: In the above program, we see that the recursive call is placed between the two swap statements. The first swap is to fix the position of the letter at a particular index, and the second swap is to restore the state of the string before recursion. The above diagram also says the same. If we look at the first three arrows, we see that it is emerging from the same state of the string, i.e., abc. Each of these three arrows gives birth to two different states of the string abc. But the problem is if we have printed abc and acb, how can we print bac or bca. This is where the second swap comes to the rescue. The second swap reinstates the change, and eventually, we get the original string, i.e., abc from bca. Thus, first we moved from abc to bca and again from bca to abc, i.e., moving the reverse direction of the arrow mentioned in the diagram. This is called backtracking. After we got abc from acb, the first swap again acts on the abc and then we get bac and bca. A similar explanation for the strings cba and cab.


Related Topics

How to create array of objects in Java

Java is an object-oriented programming language therefore everything in Java is based on objects and classes. Array is a data structure that holds data of similar type and dynamically creates...

4 minutes read.

Binary Strings Without Consecutive Ones in Java

N, an integer, is provided. Our objective is to determine the overall number of strings with length N that do not include successive 1s. Example: Input: 3 Output: 6 Explanation The binary forms of length...

6 minutes read.

Java Integer lowestOneBit()

The lowestOneBit () method of Java Integer class returns an int value with at most a single one-bit, in the position of the lowest-order one-bit in the specified int value.  Syntax public...

2 minutes read.

Java Integer toOctalString() method

The toOctalString() method of Java Integer class returns a string representing the specified int argument as an unsigned integer in base 8. Syntax public static String toOctalString (int  i) Parameters The parameter ‘i’ represents...

1 minute read.

Synchronized Keyword in Java

Synchronization is the process of limiting access to a shared resource or data to a single thread at a given moment in time. This aids in shielding the data from...

6 minutes read.

How to convert String to String array in Java

A String in Java is a thing that indicates a collection of letters. We must include the String class from java.lang package if we want to be using strings. An...

5 minutes read.

Caesar Cipher Program in Java

It is among the most popular and straightforward encryption methods. With this method, each letter in the text is swapped out for a letter that is a certain number of...

3 minutes read.

Java Math random() Method

The random() method of Math class returns a double value with a positive sign, less than 1 and greater than or equal to 0.0. This method is properly synchronized with...

1 minute read.

Split the Number String into Primes in Java

Given is a string that only contains digits and serves to represent a number. Our goal is to split the string of numbers in a way that ensures each segment...

2 minutes read.

Difference Between BufferedReader and FileReader

BufferedReader: To read data from a specified character stream, two classes are used: buffered readers and file readers. Both of them have advantages and disadvantages. Although how they operate is the...

6 minutes read.

Java 8 Consumer Interface in Java

The Consumer Interface is used to implement the functional programming in Java. The Consumer Interface indicates a function that accepts a single input and outputs a result. These functions don’t...

2 minutes read.

Functional Interfaces in Java

Java has forever remained an Object-Oriented Programming language. By object-oriented programming language, we can declare that everything present in the Java programming language rotates throughout the Objects, except for some...

11 minutes read.

Count of Range Sum Problem in Java

In this article, we will discuss the basic approach or native approach used to count range sum problem in java. To solve this problem, we will check for numbers if they...

6 minutes read.

Chromatic Number in Java

The chromatic number is the bare minimum of colours necessary to accurately colour any graph. To put it another way, the chromatic number can be thought of as the bare...

6 minutes read.

Java Math floorDiv() Method

The floorDiv () method of Math class returns the largest integer value that is less than or equal to the algebraic quotient. It firstly divides the dividend and divisor and...

2 minutes read.

Rotate matrix by 90 degrees in Java | Rotate matrix in Java clockwise and anti-clockwise

In this article, you will be acknowledged about what is a matrix along with an example. Most importantly you will be equipped knowledge on how to rotate the matrix by...

4 minutes read.

Java Program to find the smallest element in a tree

The variable min is used to store the data of the root, which is initially defined. The smallest node in the left subtree is then located by moving through the...

3 minutes read.

Java Primitive Data Types

Primitive data types are the simplest data types in a programming language. They’re predefined in the language. The names of the primitive types are quite descriptive of the values that...

2 minutes read.

How to download Eclipse for Java

Introduction: We write a java program, and when we want to run it, we need software to run it. Eclipse is a kind of software used to execute a JavaFX...

3 minutes read.

Java Program to Print Permutations of String

A string is given and you need to print all the possible ways for that string. Permutation is arranging the characters of a string to get outputs from the given...

3 minutes read.