Leet459.重复的子字符串( Repeated Substring Pattern)

https://leetcode-cn.com/problems/repeated-substring-pattern/description/

Java:

public static boolean repeatedSubstringPattern(String s) 
	 {
	     //由于取余问题首先排除全部由单个字符组成的特例
		 if(s.length()==1)
		 {
			 return false;
		 }
		 int a=0;
		 for(int i=0;i

Leet459.重复的子字符串( Repeated Substring Pattern)_第1张图片

你可能感兴趣的:(算法与数据结构,Java)