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

LeetCode题解之Rotate String

时间:2018-07-14 20:05:38      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:++   字符串   while   image   bsp   code   问题分析   etc   style   

1、题目描述

技术分享图片

2、问题分析

直接旋转字符串A,然后做比较即可。

3、代码

 1  bool rotateString(string A, string B) {
 2         if( A.size() != B.size() )
 3             return false;
 4         if( A.empty() && B.empty() )
 5             return true;
 6         int i = 0 ; 
 7         while( i < A.size() ){
 8             char c = A[0] ;
 9             A += c;
10             A.erase( A.begin() );
11             if( A == B )
12                 return true;
13             ++i;
14         }
15         return false;
16         
17     }

 

LeetCode题解之Rotate String

标签:++   字符串   while   image   bsp   code   问题分析   etc   style   

原文地址:https://www.cnblogs.com/wangxiaoyong/p/9310730.html

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