leetCode 344. Reverse String 字符串

发布时间:2020-07-16 21:22:50 作者:313119992
来源:网络 阅读:863

344. Reverse String

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

Example:
Given s = "hello", return "olleh".


思路1:

使用一个新的string来存放结果。

class Solution {
public:
    string reverseString(string s) {
        int len = s.size();
        string result;
        for(int n = 0; n < len; n++)
        {
            result.append(1,s.at(len - 1 - n));
        }
        return result;
    }
};

思路2:

修改原来string直接得到结果。

class Solution {
public:
    string reverseString(string s) {
        int len = s.size();
        for (int i = 0; i < len / 2 ; i++)
    	{
    		char a = s[i];
    		s[i] = s[len - 1 - i];
    		s[len - 1 - i] = a;
    	}
        return s;
    }
};


2016-08-10 13:04:05

推荐阅读:
  1. leetcode--字符串翻转
  2. Leetcode-43 划水记录06 大数乘法

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

字符串 ers tc

上一篇:mongodb 2.6.x 清理过大日志文件的方法

下一篇:IP地址划分类型和子网划分

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》