Table of Contents
Recursion problem?
Springboard
sum?
Use types to describe springboards
Tail call Fibonacci
Home Java javaTutorial Trampoline, example in Java

Trampoline, example in Java

Jan 17, 2025 pm 08:18 PM

Trampolim, exemplo em Java

Let’s write a simple program to add numbers from n to 0. But instead of using iterative approach, why not try recursive approach?

We call this program sum. We know sum(0) == 0, so this is our base case. How do we arrive at the base case? sum(n) == n sum(n-1), until finally reaching sum(0). The Java code is as follows:

int sum(int n) {
    if (n == 0) {
        return 0;
    }
    return n + sum(n - 1);
}
Copy after login
Copy after login

Recursion problem?

Recursion has an inherent flaw when the base case is far away from the input value... In most languages, function calls use the program's stack to store function call information, so very large recursions can cause a stack overflow.

But, is there a way to avoid this? Actually, there is. This is an old strategy called trampoline.

Springboard

The basic idea of ​​the springboard strategy is that part of the program returns a "value" or a "continuation". What is continuation? A function that will continue processing.

It’s roughly as follows:

let trampolim = primeiraChamada(input);

while (trampolim is continuation) {
    trampolim = trampolim.continue();
}
return trampolim;
Copy after login
Copy after login
Copy after login
Copy after login
What is the continuation of

sum?

Let us model sum the program as: Instead of simply recursing, use continuations. One way is to use acc as an object passed via a continuation. So when sum_trampoline(0, acc) is reached, we return acc. How to proceed?

Let’s go from sum_trampoline(n, acc) to sum_trampoline(n-1, acc n). The first input is sum_trampoline(n, 0).

So, the code is as follows:

Object sum_trampoline_bootstrap(int n) {
    return sum_trampoline(n, 0);
}

Object sum_trampoline(int n, int acc) {
    if (n == 0) {
        return acc;
    }
    return (Supplier<object>) () -> sum(n - 1, acc + n);
}
Copy after login
Copy after login

Use types to describe springboards

The springboard needs to be roughly of the following form:

let trampolim = primeiraChamada(input);

while (trampolim is continuation) {
    trampolim = trampolim.continue();
}
return trampolim;
Copy after login
Copy after login
Copy after login
Copy after login

But this gives a lot of coding freedom and is not very intuitive for the Java world. We can check if it is a continuation by asking the object. What if we asked "Was the value found?" Another thing is that since Java doesn't have sum-types, return trampolim will actually return the trampolim type instead of returning the value. We can go back to trampolim.value().

Finally, a key point is the bootstrapping of the springboard. To do this, we can use a function to convert the input into the appropriate pogo return value. Inputs and results can be generalized for better use:

public static <R> R trampoline(IN input,
                                   Function<IN, TrampolineStep<R>> trampolinebootStrap) {
  TrampolineStep<R> nextStep = trampolinebootStrap.apply(input);
  while (!nextStep.gotValue()) {
    nextStep = nextStep.runNextStep();
  }
  return nextStep.value();
}
Copy after login
Copy after login

TrampolineStep<R>What about the interface?

It defines three methods:

  • gotValue: Asks if the value has been found
  • value: Returns the found value
  • runNextStep: Returns a value or a continuation

It basically has two states:

  • Value found
  • It is a continuation

Therefore, we can use static methods to initialize it. For cases where the value has been found, the value needs to be passed:

int sum(int n) {
    if (n == 0) {
        return 0;
    }
    return n + sum(n - 1);
}
Copy after login
Copy after login

For the case of continuation, you need to pass how to get the next item of the continuation:

let trampolim = primeiraChamada(input);

while (trampolim is continuation) {
    trampolim = trampolim.continue();
}
return trampolim;
Copy after login
Copy after login
Copy after login
Copy after login

sum_trampolineHow will this be achieved?

Object sum_trampoline_bootstrap(int n) {
    return sum_trampoline(n, 0);
}

Object sum_trampoline(int n, int acc) {
    if (n == 0) {
        return acc;
    }
    return (Supplier<object>) () -> sum(n - 1, acc + n);
}
Copy after login
Copy after login

Tail call Fibonacci

The classic implementation of Fibonacci follows the recursive definition:

let trampolim = primeiraChamada(input);

while (trampolim is continuation) {
    trampolim = trampolim.continue();
}
return trampolim;
Copy after login
Copy after login
Copy after login
Copy after login

There is also an iterative version that expands the Fibonacci definition not recursively, but forward: starting from 0 and 1 until the corresponding values ​​are reached:

public static <R> R trampoline(IN input,
                                   Function<IN, TrampolineStep<R>> trampolinebootStrap) {
  TrampolineStep<R> nextStep = trampolinebootStrap.apply(input);
  while (!nextStep.gotValue()) {
    nextStep = nextStep.runNextStep();
  }
  return nextStep.value();
}
Copy after login
Copy after login

There is a forward version of this implementation, using "tail call recursion":

static <X> TrampolineStep<X> valueFound(X value) {
    return new TrampolineStep() {
        @Override
        public boolean gotValue() {
            return true;
        }

        @Override
        public X value() {
            return value;
        }

        @Override
        public TrampolineStep<X> runNextStep() {
            return this;
        }
    };
}
Copy after login

Here I separate the input interface, which prepares the numbers that will be used in the tail call recursive Fibonacci. As it moves forward, we start with the mapping fib[0] => 0, fib[1] => 1 and navigate from index 0 until we reach index n.

Fibonacci: From Tail Call to Springboard

The example of

fib_tc illustrates the Fibonacci springboard well:

static <X> TrampolineStep<X> goonStep(Supplier<TrampolineStep<X>> x) {
    return new TrampolineStep() {
        @Override
        public boolean gotValue() {
            return false;
        }

        @Override
        public X value() {
            throw new RuntimeException("dont call this");
        }

        @Override
        public TrampolineStep<X> runNextStep() {
            return x.get();
        }
    };
}
Copy after login

Please note that this is just a skeleton and requires a complete implementation of the TrampolineStep interface and a complete implementation of the trampoline functions to compile and run. Additionally, IN needs to be replaced with a specific input type.

The above is the detailed content of Trampoline, example 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)

Is the company's security software causing the application to fail to run? How to troubleshoot and solve it? Is the company's security software causing the application to fail to run? How to troubleshoot and solve it? Apr 19, 2025 pm 04:51 PM

Troubleshooting and solutions to the company's security software that causes some applications to not function properly. Many companies will deploy security software in order to ensure internal network security. ...

How to simplify field mapping issues in system docking using MapStruct? How to simplify field mapping issues in system docking using MapStruct? Apr 19, 2025 pm 06:21 PM

Field mapping processing in system docking often encounters a difficult problem when performing system docking: how to effectively map the interface fields of system A...

How to elegantly obtain entity class variable names to build database query conditions? How to elegantly obtain entity class variable names to build database query conditions? Apr 19, 2025 pm 11:42 PM

When using MyBatis-Plus or other ORM frameworks for database operations, it is often necessary to construct query conditions based on the attribute name of the entity class. If you manually every time...

How do I convert names to numbers to implement sorting and maintain consistency in groups? How do I convert names to numbers to implement sorting and maintain consistency in groups? Apr 19, 2025 pm 11:30 PM

Solutions to convert names to numbers to implement sorting In many application scenarios, users may need to sort in groups, especially in one...

How does IntelliJ IDEA identify the port number of a Spring Boot project without outputting a log? How does IntelliJ IDEA identify the port number of a Spring Boot project without outputting a log? Apr 19, 2025 pm 11:45 PM

Start Spring using IntelliJIDEAUltimate version...

How to safely convert Java objects to arrays? How to safely convert Java objects to arrays? Apr 19, 2025 pm 11:33 PM

Conversion of Java Objects and Arrays: In-depth discussion of the risks and correct methods of cast type conversion Many Java beginners will encounter the conversion of an object into an array...

E-commerce platform SKU and SPU database design: How to take into account both user-defined attributes and attributeless products? E-commerce platform SKU and SPU database design: How to take into account both user-defined attributes and attributeless products? Apr 19, 2025 pm 11:27 PM

Detailed explanation of the design of SKU and SPU tables on e-commerce platforms This article will discuss the database design issues of SKU and SPU in e-commerce platforms, especially how to deal with user-defined sales...

How to elegantly get entity class variable name building query conditions when using TKMyBatis for database query? How to elegantly get entity class variable name building query conditions when using TKMyBatis for database query? Apr 19, 2025 pm 09:51 PM

When using TKMyBatis for database queries, how to gracefully get entity class variable names to build query conditions is a common problem. This article will pin...

See all articles