标签:结果 code ati span 简单 abc st3 indexof null
把一个字符串str 前面任意的部分挪到后面形成的字符串叫做str的旋转词
举例, a="cdab" b="abcd" 返回true
a="1ab2" b="ab12" 返回false
解法很简单,
首先长度要一样
然后 生成一个大字符串b2 为两个字符串b拼在一起的结果
最后看看 b2中是否包含字符串a
package TT; public class Test3 { public boolean isRotation(String a, String b){ if(a==null || b==null || a.length() != b.length()){ return false; } String b2 = b+b; return getIndexOf(b2, a)!=-1;O } }
标签:结果 code ati span 简单 abc st3 indexof null
原文地址:http://www.cnblogs.com/toov5/p/7376224.html