-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy path459. Repeated Substring Pattern.c
57 lines (37 loc) · 1.1 KB
/
459. Repeated Substring Pattern.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
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.)
*/
bool repeatedSubstringPattern(char* str) {
int i, j, k;
int l = strlen(str);
for (i = 2; i <= l; i ++) {
if (l % i) continue;
k = l / i;
for (j = 1; j < i; j ++) {
if (strncmp(&str[0], &str[j * k], k)) break;
}
if (j == i) return true;
}
return false;
}
/*
Difficulty:Easy
Total Accepted:35K
Total Submissions:91.8K
Companies Amazon Google
Related Topics String
Similar Questions
Implement strStr()
*/