1. 程式人生 > >344. 反轉字串

344. 反轉字串

熟練使用STL,媽媽再也不用擔心我的學習!

請編寫一個函式,其功能是將輸入的字串反轉過來。

示例:

輸入:s = "hello"
返回:"olleh"
class Solution {
public:
    string reverseString(string s) {
        string res(s.rbegin(),s.rend());
        return res;
    }
};