LeetCode 344. 反转字符串 Reverse String
Posted zsy-blog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 344. 反转字符串 Reverse String相关的知识,希望对你有一定的参考价值。
双指针反转
class Solution { public: void reverseString(vector<char>& s) { int start = 0; int end = s.size() - 1; while (start < end) { swap(s[start], s[end]); ++start; --end; } } };
以上是关于LeetCode 344. 反转字符串 Reverse String的主要内容,如果未能解决你的问题,请参考以下文章
Leetcode 344:Reverse String 反转字符串(pythonjava)