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

ctci1.8

时间:2014-10-09 15:01:58      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   sp   div   log   bs   as   

bool isSub(string str0, string str1){
    if(str0.length() != str1.length())
        return false;
    str0 = str0.append(str0);
    if(str0.find(str1) == string::npos)
        return false;
    else
        return true;
}

ctci1.8

标签:style   blog   color   os   sp   div   log   bs   as   

原文地址:http://www.cnblogs.com/jilichuan/p/4013255.html

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