Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7640483
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T08:40:55+00:00 2026-05-31T08:40:55+00:00

Here is some Java code to reverse a string recursively. Could someone provide an

  • 0

Here is some Java code to reverse a string recursively.

Could someone provide an explanation of how it works?

public static String reverse(String str) {
    if ((null == str) || (str.length() <= 1)) {
        return str;
    }
    return reverse(str.substring(1)) + str.charAt(0);
}

I’m not understanding how this can possibly work.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T08:40:57+00:00Added an answer on May 31, 2026 at 8:40 am

    The function takes the first character of a String – str.charAt(0) – puts it at the end and then calls itself – reverse() – on the remainder – str.substring(1), adding these two things together to get its result – reverse(str.substring(1)) + str.charAt(0)

    When the passed in String is one character or less and so there will be no remainder left – when str.length() <= 1) – it stops calling itself recursively and just returns the String passed in.

    So it runs as follows:

    reverse("Hello")
    (reverse("ello")) + "H"
    ((reverse("llo")) + "e") + "H"
    (((reverse("lo")) + "l") + "e") + "H"
    ((((reverse("o")) + "l") + "l") + "e") + "H"
    (((("o") + "l") + "l") + "e") + "H"
    "olleH"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I came across some Java code that had the following structure: public MyParameterizedFunction(String param1,
Here is some of my Java code public List<OBJ> a = new ArrayList<OBJ>(); public
I'm converting some Java code to Javascript, and the Java object has a Static
I came across some Java code that has a method containing the following: static
I have this code in java : try{ //some code here.. . } catch
I would like some Java code to Delete files older than N days. Here
I've got some Java code along the lines of: Vector<String> allLines = new Vector<String>();
I got some sample code from the net here: http://www.javadb.com/sending-a-post-request-with-parameters-from-a-java-class That works fine. It
Here is some simple code: DIR* pd = opendir(xxxx); struct dirent *cur; while (cur
Here's some code (full program follows later in the question): template <typename T> T

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.