LeetCode 反转字符串
Posted sumelt
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 反转字符串相关的知识,希望对你有一定的参考价值。
题目:
- https://leetcode-cn.com/problems/reverse-string/
思路:
- 这是很简单的一道题,利用的是ASCII 码表的差值,彼此加、减差值即可,(也可直接交换),一开始使用标准库的迭代器,发现耗时较多,改为下标后,耗时缩短不少。
class Solution { public: void reverseString(vector<char>& s) { int size = s.size(); int last = size - 1; for( int i = 0; i < size / 2; ++i ) //循环范围折半 { int Difference = s[ i ] - s[ last ]; s[ i ] -= Difference; s[ last-- ] += Difference; } } };
以上是关于LeetCode 反转字符串的主要内容,如果未能解决你的问题,请参考以下文章
Leetcode 345. 反转字符串中的元音字母 By Python