-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKMP.java
48 lines (44 loc) · 1.27 KB
/
KMP.java
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
public class KMP {
public static int[] computeLPSArray(String pattern) {
int[] lps = new int[pattern.length()];
int len = 0; // Length of the previous longest prefix suffix
int i = 1;
while (i < pattern.length()) {
if (pattern.charAt(i) == pattern.charAt(len)) {
len++;
lps[i] = len;
i++;
} else {
if (len != 0) {
len = lps[len - 1];
} else {
lps[i] = 0;
i++;
}
}
}
return lps;
}
public
static int KMPSearch(String pattern, String text) {
int[] lps = computeLPSArray(pattern);
int i = 0, j = 0;
while (i < text.length()) {
if (pattern.charAt(j) == text.charAt(i)) {
j++;
i++;
}
if (j == pattern.length()) {
return i - j; // Pattern found
}
if (i < text.length() && pattern.charAt(j) != text.charAt(i)) {
if (j != 0) {
j = lps[j - 1];
} else {
i++;
}
}
}
return -1; // Pattern not found
}
}