forked from kedebug/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImplementstrStr.cpp
More file actions
32 lines (32 loc) · 854 Bytes
/
ImplementstrStr.cpp
File metadata and controls
32 lines (32 loc) · 854 Bytes
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
class Solution {
public:
char *strStr(char *haystack, char *needle) {
int n = strlen(haystack);
int m = strlen(needle);
if (m == 0) {
return haystack;
}
vector<int> next(m, -1);
for (int i = 1, j = -1; i < m; i++) {
while (j != -1 && needle[j+1] != needle[i]) {
j = next[j];
}
if (needle[j+1] == needle[i]) {
j++;
}
next[i] = j;
}
for (int i = 0, j = -1; i < n; i++) {
while (j != -1 && needle[j+1] != haystack[i]) {
j = next[j];
}
if (needle[j+1] == haystack[i]) {
j++;
}
if (j == m - 1) {
return haystack + i - m + 1;
}
}
return NULL;
}
};