Java implementation string inversion

Source: Internet
Author: User

There are several implementations for using the Java string inversion:

    • Using the reverse function in the StringBuilder class;
    • Using recursion, the first character of a string is placed after a substring other than the first character, and then the substring is called recursively;
    • Use character arrays to do reverse;
public class Reverse {public static string reverse1 (String str) {if (str = = NULL | | str.length () <= 1) return Str;return New StringBuilder (str). reverse (). toString (); public static string Reverse2 (String str) {if (str = = NULL | | str.length () <= 1) return Str;return Reverse2 (Str.substrin G (1)) + str.charat (0);} public static string Reverse3 (String str) {if (str = = NULL | | str.length () <= 1) return str;char[] CA = new Char[str.len Gth ()];for (int i = 0; i < str.length (); i++) {Ca[i] = Str.charat (Str.length ()-i-1);} return new String (CA); public static void Main (string[] args) {String s = ' Hello World '; System.out.println (Reverse1 (s)); System.out.println (Reverse2 (s)); System.out.println (REVERSE3 (s));}}

Java implementation string inversion

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.