leetcode-344. Reverse String

Posted 世人谓我恋长安,其实只恋长安某

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-344. Reverse String相关的知识,希望对你有一定的参考价值。

344. Reverse String

Write a function that takes a string as input and returns the string reversed.

反转string字符串

java代码:

public class Solution {
    public String reverseString(String s) {
        String a="";
        StringBuilder sb=new StringBuilder(a);
        for(int i=0;i<s.length();i++){
            sb.insert(0,s.charAt(i));
        }
        return sb.toString();
    }
}

  第二种解法,更加快速

java代码:

public class Solution {
    public String reverseString(String s) {
        char[] ch=s.toCharArray();
        int i=0;
        int j=s.length()-1;
        char temp;
        while(i<j){
            temp=ch[i];
            ch[i++]=ch[j];
            ch[j--]=temp;
        }
        return new String(ch);
    }
}

  

以上是关于leetcode-344. Reverse String的主要内容,如果未能解决你的问题,请参考以下文章

leetcode-344. Reverse String

Leetcode-344 Reverse String

leetcode 344. Reverse String

LeetCode 344 - Reverse String

[leetcode] 344.Reverse String

LeetCode(344) Reverse String