Leetcode344. 反转字符串(JAVA双指针)

Posted !0 !

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode344. 反转字符串(JAVA双指针)相关的知识,希望对你有一定的参考价值。

题目链接:https://leetcode-cn.com/problems/reverse-string/

解题思路

l指针从左到右遍历,r指针从右到左遍历,交换左右两个指针

代码

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

复杂度分析

  • 时间复杂度:O(n)
  • 空间复杂度:O(1)

以上是关于Leetcode344. 反转字符串(JAVA双指针)的主要内容,如果未能解决你的问题,请参考以下文章

前端与算法 leetcode 344. 反转字符串

Leetcode 344:Reverse String 反转字符串(pythonjava)

LeetCode 344. Reverse String(反转字符串)

leetcode-344-反转字符串

LeetCode 344. 反转字符串

Leetcode 344.反转字符串 By Python