其他分享
首页 > 其他分享> > LeetCode 344. 反转字符串

LeetCode 344. 反转字符串

作者:互联网

 

思路

方法:首尾双指针

 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 };

 

标签:int,void,public,344,swap,字符串,LeetCode,size
来源: https://www.cnblogs.com/FengZeng666/p/14492300.html