美文网首页
LeetCode*344. Reverse String

LeetCode*344. Reverse String

作者: _Xie_ | 来源:发表于2017-07-21 23:28 被阅读0次

LeetCode题目链接

注意:凡是以英文出现的,都是题目提供的,包括答案代码里的前几行。

题目:

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

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

答案:

class Solution {
public:
    string reverseString(string s) {
        int i = 0;
        int j = s.size() - 1;
        while (i < j) {
            swap(s[i++], s[j--]);
        }
        return s;
    }
};

相关文章

网友评论

      本文标题:LeetCode*344. Reverse String

      本文链接:https://www.haomeiwen.com/subject/fdsykxtx.html