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

字符串:左旋转字符串 考察知识迁移能力

时间:2019-12-31 12:23:01      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:++   return   左旋转字符串   class   ring   int   oid   end   ota   

 1 class Solution {//思路:先完全翻转前面的,再完全翻转后面的,再整个字符串反转。
 2 public:
 3     void ReversePart(string &str, int start, int end){
 4         while(start < end){
 5             swap(str[start++], str[end--]);
 6         }
 7     }
 8     string LeftRotateString(string str, int n) {
 9         if(str.size() == 0){
10             return str;
11         }
12         ReversePart(str, 0, n-1);
13         ReversePart(str, n, str.size()-1);
14         ReversePart(str, 0, str.size()-1);
15         return str;
16     }
17 };

字符串:左旋转字符串 考察知识迁移能力

标签:++   return   左旋转字符串   class   ring   int   oid   end   ota   

原文地址:https://www.cnblogs.com/icehole/p/12123616.html

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