题解 | #旋转字符串#

旋转字符串

http://www.nowcoder.com/practice/80b6bb8797644c83bc50ac761b72981c

class Solution {
public:
    /**
     * 旋转字符串
     * @param A string字符串 
     * @param B string字符串 
     * @return bool布尔型
     */
    bool solve(string A, string B) {
        // write code here
        if(A.size() != B.size())
            return false;
        int l = 0;
        int f = 0;
        for(; f < A.size(); f++) {
            if(A[f] == B[0])
                break;
        }
        for(; l < f; l++) {
            if(A[l] == B[f + l])
                continue;
            else
                return false;
        }
        if(l == f)
            return true;
        else
            return false;
    }
};
全部评论

相关推荐

牛客771574427号:恭喜你,华杰
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务