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

【字符串】 344. 反转字符串

时间:2020-05-03 20:47:39      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:col   alt   tor   void   字符串   reverse   rev   style   ++   

题目:

技术图片

 

 

解答:

 1 class Solution {
 2 public:
 3     void reverseString(vector<char>& s) 
 4     {
 5         if (s.size() <= 1)
 6         {
 7             return;
 8         }
 9 
10         int beg = 0;
11         int end = s.size() - 1;
12 
13         while (beg < end)
14         {
15             char tmp = s[beg];
16             s[beg] = s[end];
17             s[end] = tmp;
18             beg++;
19             end--;
20         }
21     }
22 };

 

【字符串】 344. 反转字符串

标签:col   alt   tor   void   字符串   reverse   rev   style   ++   

原文地址:https://www.cnblogs.com/ocpc/p/12823041.html

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