leetcode 344. 反转字符串

2023.6.12

leetcode 344. 反转字符串_第1张图片

        字符串系列的第一题,很简单的一道题,我使用双指针法,代码如下:

class Solution {
public:
    void reverseString(vector& s) {
        int left = 0;
        int right = s.size()-1;
        while(left < right)
        {
            swap(s[left],s[right]);
            left++;
            right--;
        }
    }   
};

 

你可能感兴趣的:(leetcode专栏,leetcode,算法,c++,数据结构)