Java Recursion

As you might already know, a method can call another method within it. What is even more interesting is that a method can call itself. This possibility is known as recursion and the method calling itself is called a recursive method.

As any regular method, a recursive method can contain parameters and return something, or it can take or return nothing.

But how many times should a method call itself? It should be limited. The method must have a special condition to stop the recursion, otherwise, the call stack will overflow and the execution will stop with an error.

To write recursive methods developers should consider the solution of a problem as a smaller version of the same problem.

Most (if not all) programming languages have recursion (in other words, they allow a function to call itself). It is very convenient to know how to create recursive functions. Each recursive function consists of the following steps:

  • trivial base case stops the recursion. This is the case we know the result for.
  • reduction step (one or more) gets us from the current problem to a simpler one.

The factorial example

The classic example of the recursion is a math function calculating the factorial.

If you have forgotten or did not know, the factorial of a non-negative integer n is the product of all positive integers from 1 to n inclusively. E.g., the factorial of 4 is 1 * 2 * 3 * 4 = 24. The factorial of 0 equals 1.

Here is a recursive method which does the same using the recursive call:

public static long factorial(long n) {
    if (n == 0 || n == 1) {
        return 1; // the trivial case
    } else {
        return n * factorial(n - 1); // the recursive call
    }
}

This method has one long parameter and returns a long result. The implementation includes:

  • the trivial case that returns the value 1 without any recursive calls;
  • the reduction step with the recursive call to simplify the problem.

We suppose that the passed argument >= 0. If the passed value is 0 or 1, the result is 1, otherwise, we invoke the same method decreasing the argument by one.

Let's invoke the method by passing different arguments:

long fact0 = factorial(0); // 1 (by definition)
long fact1 = factorial(1); // 1
long fact2 = factorial(2); // 2 (1 * 2)
long fact3 = factorial(3); // 6 (1 * 2 * 3)
long fact4 = factorial(4); // 24 (1 * 2 * 3 * 4)

As you can see, it returns the expected results.

What happens if a recursive method never reaches a base case? This raises the question of what occurs when the stack never stops growing. If a program's stack exceeds the limit size, the Stack Overflow Error occurs. It will crash the execution.

Replacing recursion by a loop

Every recursive method can be rewritten using iteration with a loop.

Let's rewrite the factorial program in a different way, check out this block of code:

public static long factorial(long n) {
    int result = 1;
    for (int i = 1; i <= n; i++) {
        result *= i;
    }
    return result;
}

You can be sure that the result will be the same.

Types of recursions

In Java there are several types of recursions:

1) Direct recursion — A method that invokes itself like the previous factorial method.

2) Indirect recursion — A method which invokes another method that invokes the original method.

3) Tail-recursion — A call is tail-recursive if nothing has to be done after the call returns. When the method call returns, the result is immediately returned from the calling method.

In other words, tail recursion is when the recursive call is the last statement in the method.

The considered recursive method for calculating factorial is not tail-recursion because after the recursive call it multiplies the result by a value. But it can be written as a tail recursive function. The general idea is to use an additional argument to accumulate the factorial value. When n reaches 0, the method should return the accumulated value.

public static long factorialTailRecursive(long n, long accum) {
    if (n == 0) {
        return accum;
    }
    return factorialTailRecursive(n - 1, n * accum);
}

And write a special wrapper to invoke it in a more convenient way:

public static long factorial(long n) {
    return factorialTailRecursive(n, 1);
}

4) Multiple recursion. A method invokes itself recursively multiple times. The well-known example is calculating the n-th Fibonacci number using the recursive algorithm.

The recurrent formula:

Fib(n) = Fib(n - 1) + Fib(n - 2); Fib(0) = 0, Fib(1) = 1.

The Fibonacci sequence starts with: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, ...

public static int fib(int n) {
    if (n <= 1) {
        return n;
    }
    return fib(n - 1) + fib(n - 2);
}

This solution is very inefficient, however it's just a simple example for multiple recursion. Try to start the method passing 45 as the argument. It takes too much time. If you replace the recursion with a loop instead, it will execute much faster.

Create a free account to access the full topic

“It has all the necessary theory, lots of practice, and projects of different levels. I haven't skipped any of the 3000+ coding exercises.”
Andrei Maftei
Hyperskill Graduate