Skip to content

Latest commit

 

History

History
18 lines (17 loc) · 462 Bytes

344. Reverse String.md

File metadata and controls

18 lines (17 loc) · 462 Bytes

思路

翻转字符串。
注意:交换元素时,最好用标准库里的swap,快一些。

C++

class Solution {
public:
    string reverseString(string s) {
        int low = 0, high = s.size() - 1;
        while(low < high){
            swap(s[low++], s[high--]); // 库里的swap比自己写的要快一些
        }
        return s;
        
    }
};