首页 > 其他 > 详细

344. Reverse String

时间:2018-12-20 00:33:13      阅读:173      评论:0      收藏:0      [点我收藏+]

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

Example 1:

Input: "hello"
Output: "olleh"

Example 2:

Input: "A man, a plan, a canal: Panama"
Output: "amanaP :lanac a ,nalp a ,nam A"

The most convenient way is to use StringBuffer class and methods in it.
Solution1:
class Solution {
    public String reverseString(String s) {
        return new StringBuffer(s).reverse().toString();
    }
}  

p.s. This is a website of the difference among String, StringBuffer and StringBuilder.

http://www.cnblogs.com/su-feng/p/6659064.html

Then it‘s the common solution, which is to convert the string to an array at first, then use a new string to stroe each character in given location.

solution2:

 char[] a = s.toCharArray();
        String res = "";
        for(int i = a.length - 1; i>=0; i--)
            res = res + a[i];
        return res;

 

 

344. Reverse String

原文:https://www.cnblogs.com/wentiliangkaihua/p/10147078.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!