leetcode 459. Repeated Substring Pattern
Posted 将者,智、信、仁、勇、严也。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 459. Repeated Substring Pattern相关的知识,希望对你有一定的参考价值。
Given a non-empty string check if it can be constructed by taking a substring of it and appending multiple copies of the substring together. You may assume the given string consists of lowercase English letters only and its length will not exceed 10000.
Example 1:
Input: "abab" Output: True Explanation: It‘s the substring "ab" twice.
Example 2:
Input: "aba" Output: False
Example 3:
Input: "abcabcabcabc" Output: True Explanation: It‘s the substring "abc" four times. (And the substring "abcabc" twice.)
class Solution(object): def repeatedSubstringPattern(self, s): """ :type s: str :rtype: bool """ #return True if re.match(r"(w+)*", s) else False def is_repeat(s1, s2): return s1 == s2*(len(s1)/len(s2)) l = len(s) for i in xrange(1, l/2+1): if l % i == 0: if is_repeat(s, s[:i]): return True return False
上面是暴力解法,下面是技巧解法:
class Solution(object): def repeatedSubstringPattern(self, s): """ :type s: str :rtype: bool """ #return True if re.match(r"(w+)*", s) else False if not s: return False ss = (s + s)[1:-1] return ss.find(s) != -1
解释:
Let‘s say T = S + S
.
"S is Repeated => From T[1:-1] we can find S
" is obvious.
If from T[1:-1]
we found S
at index p-1
, which is index p
in T
and S
.
let s1 = S[:p]
, S
can be represented as s1s2...sn
, where si
stands for substring rather than character.
then we know T[p:len(S) + p] = s2s3...sn-1sns1 = S = s1s2...sn-2sn-1sn
.
So s1 = s2, s2 = s3, ..., sn-1 = sn, sn = s1
,Which means S is Repeated.
其实你自己画图下就知道了!!!假设:
s=s1s2s3s4
T=s1s2s3s4s1s2s3s4
去掉收尾,则有:T‘=s2s3s4s1s2s3,如果在这里面找到了s1s2s3s4,假设找到的为0位置则:
s2s3s4s1=s1s2s3s4,说明:s2==s1,s3==s2,s4==s3,s1==s4,不就是单个字符重复了嘛!同样,假设出现的位置为1,也可以类似推导!
以上是关于leetcode 459. Repeated Substring Pattern的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 459. Repeated Substring Pattern
LeetCode459. Repeated Substring Pattern
LeetCode 459 Repeated Substring Pattern
leetcode 459. Repeated Substring Pattern