面试题58 - II. 左旋转字符串

Posted ocpc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了面试题58 - II. 左旋转字符串相关的知识,希望对你有一定的参考价值。

题目:

技术图片

 

 

 

解答:

 1 class Solution {
 2 public:
 3     string reverseLeftWords(string s, int n) 
 4     {
 5         reversestr(s, 0, n);
 6         reversestr(s, n, s.size());
 7         reversestr(s, 0, s.size());
 8         return s;
 9 
10     }
11     void reversestr(string &s, int begin, int end)
12     {
13         int i = begin, j = end - 1;
14         char tmp;
15         while(i < j)
16         {
17             tmp = s[i];
18             s[i] = s[j];
19             s[j] = tmp;
20             ++i;
21             --j;
22         }
23     }
24 };

 

以上是关于面试题58 - II. 左旋转字符串的主要内容,如果未能解决你的问题,请参考以下文章

面试题58 - II. 左旋转字符串

面试题58 - II. 左旋转字符串

LeetCode 58 - II. 左旋转字符串

《剑指offer》第五十八题II:左旋转字符串

剑指 Offer 58 - II. 左旋转字符串

LeetCode剑指 Offer 58 - II. 左旋转字符串(C++)