Table of Contents
1. The difference between recursion and iteration
Home Java javaTutorial What is the difference between recursion and iteration in Java?

What is the difference between recursion and iteration in Java?

May 02, 2023 pm 07:25 PM
java

1. The difference between recursion and iteration

  • When an entity calls itself , the program is called recursive.

  • When there is a loop (or repetition) , the program is called an iterative call .

  • Example: Program to find the factorial of a number

## Time complexity comparison

  • The time complexity of finding recursion is more difficult than that of iteration.

  • Recursion: The time complexity of recursion can be found by finding the value of the nth recursive call based on the previous calls. Therefore, finding the target case based on the base case, and solving it based on the base case, allows us to understand the time complexity of the recursive equation.

  • Iteration: The time complexity of an iteration can be found by finding the number of loops repeated within the loop.

Usage comparison

  • Using any of these techniques is a trade-off between time complexity and code size trade-off.

  • If time complexity is the focus and the number of recursive calls will be large, it is best to use iteration.

  • However, if time complexity is not an issue and code shortness is, then recursion would be the way to go.

  • Recursion: Recursion involves calling the same function again, so the code length is very short. However, as we saw in our analysis, the time complexity of recursion can grow exponentially when the number of recursive calls is considerable. Therefore, the use of recursion is advantageous in shorter code, but at a higher time complexity.

  • Iteration: Iteration is the repetition of a block of code. This involves a larger amount of code, but the time complexity is usually lower than recursion.

Overhead

  • Recursion has a lot of overhead compared to iteration.

  • Recursion: Recursion has the overhead of repeated function calls, that is, due to repeated calls to the same function, the time complexity of the code Increased many times.

  • Iteration: Iteration does not involve any such overhead.

Infinite Repetition

  • Infinite Repetition in recursion will cause CPU crash, but in During the iteration, it stops when memory is exhausted.

  • Recursion: In Recursion, infinite recursive calls may occur due to errors in the specified basic conditions, and continuous calls will never be false. function, which may cause the system CPU to crash.

  • Iteration: Infinite iteration due to an iterator assignment or increment error or a termination condition error will result in an infinite loop, which may or may not cause the system to Error, but will definitely stop further execution of the program.

DefinitionApplyTerminationUsageCode sizeTime complexitySpace complexityHeapSpeedStorageElevatedInfinite Repeat2. Code

##Recursion
Iteration
The function calls itself. A set of instructions that are executed repeatedly.
for functions. For loops.
Through the base case, there will be no function calls here. When the iterator's termination condition is no longer met.
Use when code size needs to be small and time complexity is not an issue. Use when time complexity needs to be balanced against expanded code size
Less code More code
Very high (usually exponential) time complexity. The time complexity is relatively low (generally polynomial-logarithm).
The space complexity is higher than iteration. The space complexity is low.
The stack here is used to store local variables when functions are called. Do not use the stack.
Execution is slow because it has the overhead of maintaining and updating the stack. Generally, it is faster than recursion because it does not use the stack.
Recursion uses more memory compared to iteration. There is no overhead because there are no function calls in the iteration.
Have the overhead of repeated function calls. There is no overhead because there are no function calls in the iteration.
If a recursive function does not satisfy the termination condition or is undefined or the base case is never reached, it will result in a stack overflow error and the system may run indefinitely Crash in recursion. If the control condition of the iteration statement is never false or the control variable does not reach the terminal value, it will cause an infinite loop. In an infinite loop, it uses CPU cycles again and again.

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

public class Test {

    // ----- 递归 -----

    // 求给定数的阶乘的方法

    static int factorialUsingRecursion(int n)

    {

        if (n == 0)

            return 1;

 

        // 递归呼叫

        return n * factorialUsingRecursion(n - 1);

    }

 

    // -----迭代 -----

    //求给定数的阶乘的方法

    static int factorialUsingIteration(int n)

    {

        int res = 1, i;

 

        // 迭代

        for (i = 2; i <= n; i++)

            res *= i;

 

        return res;

    }

 

    public static void main(String[] args)

    {

        int num = 5;

        System.out.println("Factorial of " + num

                + " using Recursion is: "

                + factorialUsingRecursion(5));

 

        System.out.println("Factorial of " + num

                + " using Iteration is: "

                + factorialUsingIteration(5));

    }

}

Copy after login

1

2

Factorial of 5 using Recursion is: 120

Factorial of 5 using Iteration is: 120

Copy after login

The above is the detailed content of What is the difference between recursion and iteration in Java?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Perfect Number in Java Perfect Number in Java Aug 30, 2024 pm 04:28 PM

Guide to Perfect Number in Java. Here we discuss the Definition, How to check Perfect number in Java?, examples with code implementation.

Weka in Java Weka in Java Aug 30, 2024 pm 04:28 PM

Guide to Weka in Java. Here we discuss the Introduction, how to use weka java, the type of platform, and advantages with examples.

Smith Number in Java Smith Number in Java Aug 30, 2024 pm 04:28 PM

Guide to Smith Number in Java. Here we discuss the Definition, How to check smith number in Java? example with code implementation.

Java Spring Interview Questions Java Spring Interview Questions Aug 30, 2024 pm 04:29 PM

In this article, we have kept the most asked Java Spring Interview Questions with their detailed answers. So that you can crack the interview.

Break or return from Java 8 stream forEach? Break or return from Java 8 stream forEach? Feb 07, 2025 pm 12:09 PM

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is

TimeStamp to Date in Java TimeStamp to Date in Java Aug 30, 2024 pm 04:28 PM

Guide to TimeStamp to Date in Java. Here we also discuss the introduction and how to convert timestamp to date in java along with examples.

Java Program to Find the Volume of Capsule Java Program to Find the Volume of Capsule Feb 07, 2025 am 11:37 AM

Capsules are three-dimensional geometric figures, composed of a cylinder and a hemisphere at both ends. The volume of the capsule can be calculated by adding the volume of the cylinder and the volume of the hemisphere at both ends. This tutorial will discuss how to calculate the volume of a given capsule in Java using different methods. Capsule volume formula The formula for capsule volume is as follows: Capsule volume = Cylindrical volume Volume Two hemisphere volume in, r: The radius of the hemisphere. h: The height of the cylinder (excluding the hemisphere). Example 1 enter Radius = 5 units Height = 10 units Output Volume = 1570.8 cubic units explain Calculate volume using formula: Volume = π × r2 × h (4

Create the Future: Java Programming for Absolute Beginners Create the Future: Java Programming for Absolute Beginners Oct 13, 2024 pm 01:32 PM

Java is a popular programming language that can be learned by both beginners and experienced developers. This tutorial starts with basic concepts and progresses through advanced topics. After installing the Java Development Kit, you can practice programming by creating a simple "Hello, World!" program. After you understand the code, use the command prompt to compile and run the program, and "Hello, World!" will be output on the console. Learning Java starts your programming journey, and as your mastery deepens, you can create more complex applications.

See all articles