-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsolution.java
More file actions
87 lines (60 loc) · 1.64 KB
/
Copy pathsolution.java
File metadata and controls
87 lines (60 loc) · 1.64 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
class Solution {
// Function to build LPS array
private int[] buildLPS(int[] b) {
int m = b.length;
// LPS array
int[] lps = new int[m];
// Length of previous longest prefix suffix
int len = 0;
int i = 1;
while (i < m) {
// Matching elements
if (b[i] == b[len]) {
len++;
lps[i] = len;
i++;
} else {
// Try smaller prefix
if (len != 0) {
len = lps[len - 1];
} else {
lps[i] = 0;
i++;
}
}
}
return lps;
}
public ArrayList<Integer> search(int[] a, int[] b) {
int n = a.length;
int m = b.length;
// Build LPS array
int[] lps = buildLPS(b);
// Store result
ArrayList<Integer> ans = new ArrayList<>();
int i = 0;
int j = 0;
while (i < n) {
// Elements match
if (a[i] == b[j]) {
i++;
j++;
}
// Full pattern matched
if (j == m) {
ans.add(i - m);
// Continue searching
j = lps[j - 1];
}
// Mismatch
else if (i < n && a[i] != b[j]) {
if (j != 0) {
j = lps[j - 1];
} else {
i++;
}
}
}
return ans;
}
}