LeetCode - Rotate String

Posted IncredibleThings

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode - Rotate String相关的知识,希望对你有一定的参考价值。

We are given two strings, A and B.

A shift on A consists of taking string A and moving the leftmost character to the rightmost position. For example, if A = ‘abcde‘, then it will be ‘bcdea‘ after one shift on A. Return True if and only if A can become B after some number of shifts on A.

Example 1:
Input: A = ‘abcde‘, B = ‘cdeab‘
Output: true

Example 2:
Input: A = ‘abcde‘, B = ‘abced‘
Output: false
Note:

A and B will have length at most 100.
class Solution {
    public boolean rotateString(String A, String B) {
        if(A == null || B == null || A.length() != B.length()){
            return false;
        }
        if(A.length() == 0 && B.length() == 0){
            return true;
        }
        
        int n = A.length();
     //轮数
for(int i = 0; i< n; i++){ boolean find = true;
       //每一个元素
for(int j = 0; j < n; j++){ int a = A.charAt(j); int newIndex = (n - i + j) % n; int b = B.charAt(newIndex); if(a != b){ find = false; break; } } if(find){ return true; } } return false; } }

 



以上是关于LeetCode - Rotate String的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode - Rotate String

leetcode-796-Rotate String

[LeetCode&Python] Problem 796. Rotate String

(Easy) Rotate String- LeetCode

[LeetCode] Rotate String 旋转字符串

LeetCode题解之Rotate String