字符串轮转。给定两个字符串s1和s2,请编写代码检查s2是否为s1旋转而成(比如,waterbottle是erbottlewat旋转后的字符串)。
示例1:
输入:s1 = "waterbottle", s2 = "erbottlewat"
输出:True
示例2:
输入:s1 = "aa", s2 = "aba"
输出:False
来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/string-rotation-lcci
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
内置检查字符串方法
class Solution {
public boolean isFlipedString(String s1, String s2) {
//长度不相等,怎么旋转都不会一致
if(s1.length()!=s2.length())return false;
//判断s2字符串是否在s1+s1字符串中
return (s1+s1).contains(s2);
}
}
标签:轮转,示例,s2,s1,字符串,waterbottle
From: https://www.cnblogs.com/xiaochaofang/p/17458791.html