【LeetCode刷题-数组】--344.反转字符串

344.反转字符串

【LeetCode刷题-数组】--344.反转字符串_第1张图片

使用双指针:

class Solution {
    public void reverseString(char[] s) {
        int l = 0,r = s.length-1;
        while(l<r){
            char c = s[l];
            s[l] = s[r];
            s[r] = c; 
            l++;
            r--;
        }
    }
}

你可能感兴趣的:(#,数组,leetcode)