LeetCode344. 反转字符串

一、题目描述

LeetCode344. 反转字符串

二、解法

class Solution {
    public void reverseString(char[] s) {
        if (s == null || s.length == 0) return;
        int l = 0, r = s.length - 1;
        while (l < r) {
            swap(s, l, r);
            l ++;
            r --;
        }
    }
    private void swap(char[] chars, int a, int b) {
        char temp = chars[a];
        chars[a] = chars[b];
        chars[b] = temp;
    }
}

 

上一篇:常见算法-左旋转字符串


下一篇:给定一个字符串,找到第一个只出现一次的字符的下标,找不到输出-1。