459:重复的子字符串
This commit is contained in:
parent
bc8fb24a10
commit
fb4a821719
@ -0,0 +1,68 @@
|
|||||||
|
//<p>给定一个非空的字符串<meta charset="UTF-8" /> <code>s</code> ,检查是否可以通过由它的一个子串重复多次构成。</p>
|
||||||
|
//
|
||||||
|
//<p> </p>
|
||||||
|
//
|
||||||
|
//<p><strong>示例 1:</strong></p>
|
||||||
|
//
|
||||||
|
//<pre>
|
||||||
|
//<strong>输入:</strong> s = "abab"
|
||||||
|
//<strong>输出:</strong> true
|
||||||
|
//<strong>解释:</strong> 可由子串 "ab" 重复两次构成。
|
||||||
|
//</pre>
|
||||||
|
//
|
||||||
|
//<p><strong>示例 2:</strong></p>
|
||||||
|
//
|
||||||
|
//<pre>
|
||||||
|
//<strong>输入:</strong> s = "aba"
|
||||||
|
//<strong>输出:</strong> false
|
||||||
|
//</pre>
|
||||||
|
//
|
||||||
|
//<p><strong>示例 3:</strong></p>
|
||||||
|
//
|
||||||
|
//<pre>
|
||||||
|
//<strong>输入:</strong> s = "abcabcabcabc"
|
||||||
|
//<strong>输出:</strong> true
|
||||||
|
//<strong>解释:</strong> 可由子串 "abc" 重复四次构成。 (或子串 "abcabc" 重复两次构成。)
|
||||||
|
//</pre>
|
||||||
|
//
|
||||||
|
//<p> </p>
|
||||||
|
//
|
||||||
|
//<p><b>提示:</b></p>
|
||||||
|
//
|
||||||
|
//<p><meta charset="UTF-8" /></p>
|
||||||
|
//
|
||||||
|
//<ul>
|
||||||
|
// <li><code>1 <= s.length <= 10<sup>4</sup></code></li>
|
||||||
|
// <li><code>s</code> 由小写英文字母组成</li>
|
||||||
|
//</ul>
|
||||||
|
//<div><div>Related Topics</div><div><li>字符串</li><li>字符串匹配</li></div></div><br><div><li>👍 676</li><li>👎 0</li></div>
|
||||||
|
package leetcode.editor.cn;
|
||||||
|
|
||||||
|
// 459:重复的子字符串
|
||||||
|
public class RepeatedSubstringPattern {
|
||||||
|
public static void main(String[] args) {
|
||||||
|
Solution solution = new RepeatedSubstringPattern().new Solution();
|
||||||
|
// TO TEST
|
||||||
|
solution.repeatedSubstringPattern("aaaa");
|
||||||
|
}
|
||||||
|
|
||||||
|
//leetcode submit region begin(Prohibit modification and deletion)
|
||||||
|
class Solution {
|
||||||
|
public boolean repeatedSubstringPattern(String s) {
|
||||||
|
int lens = s.length(), i = 0;
|
||||||
|
while (++i < lens) {
|
||||||
|
if (lens % i != 0) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (s.substring(lens - i, lens).equals(s.substring(0, i))) {
|
||||||
|
if (s.substring(i, lens).equals(s.substring(0, lens - i))) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//leetcode submit region end(Prohibit modification and deletion)
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,38 @@
|
|||||||
|
<p>给定一个非空的字符串<meta charset="UTF-8" /> <code>s</code> ,检查是否可以通过由它的一个子串重复多次构成。</p>
|
||||||
|
|
||||||
|
<p> </p>
|
||||||
|
|
||||||
|
<p><strong>示例 1:</strong></p>
|
||||||
|
|
||||||
|
<pre>
|
||||||
|
<strong>输入:</strong> s = "abab"
|
||||||
|
<strong>输出:</strong> true
|
||||||
|
<strong>解释:</strong> 可由子串 "ab" 重复两次构成。
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<p><strong>示例 2:</strong></p>
|
||||||
|
|
||||||
|
<pre>
|
||||||
|
<strong>输入:</strong> s = "aba"
|
||||||
|
<strong>输出:</strong> false
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<p><strong>示例 3:</strong></p>
|
||||||
|
|
||||||
|
<pre>
|
||||||
|
<strong>输入:</strong> s = "abcabcabcabc"
|
||||||
|
<strong>输出:</strong> true
|
||||||
|
<strong>解释:</strong> 可由子串 "abc" 重复四次构成。 (或子串 "abcabc" 重复两次构成。)
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<p> </p>
|
||||||
|
|
||||||
|
<p><b>提示:</b></p>
|
||||||
|
|
||||||
|
<p><meta charset="UTF-8" /></p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li><code>1 <= s.length <= 10<sup>4</sup></code></li>
|
||||||
|
<li><code>s</code> 由小写英文字母组成</li>
|
||||||
|
</ul>
|
||||||
|
<div><div>Related Topics</div><div><li>字符串</li><li>字符串匹配</li></div></div><br><div><li>👍 676</li><li>👎 0</li></div>
|
Loading…
Reference in New Issue
Block a user