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

796. Rotate String

时间:2018-06-13 19:38:00      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:lse   str   false   find   public   ret   bool   IV   string   

 1 class Solution 
 2 {
 3 public:
 4     bool rotateString(string A, string B) 
 5     {
 6         if(A.length()==B.length()&&(A+A).find(B)!=string::npos)
 7             return true;
 8         return false;
 9     }
10 };

把俩A拼起来,能找到B,则可以通过循环右移将A转化为B

796. Rotate String

标签:lse   str   false   find   public   ret   bool   IV   string   

原文地址:https://www.cnblogs.com/zhuangbijingdeboke/p/9179269.html

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