码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode 344. 反转字符串

时间:2021-03-08 13:22:36      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:str   rev   tor   mic   ++   nbsp   tco   image   while   

技术图片

 

思路

方法:首尾双指针

 1 class Solution {
 2 public:
 3     void reverseString(vector<char>& s) {
 4         int i = 0, j = s.size()-1;
 5         while(i < j) {
 6             swap(s[i], s[j]);
 7             ++i;
 8             --j;
 9         }
10     }
11 };

技术图片

 

LeetCode 344. 反转字符串

标签:str   rev   tor   mic   ++   nbsp   tco   image   while   

原文地址:https://www.cnblogs.com/FengZeng666/p/14492300.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!