-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsolution.cpp
More file actions
102 lines (73 loc) · 2.29 KB
/
Copy pathsolution.cpp
File metadata and controls
102 lines (73 loc) · 2.29 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
class Solution {
public:
// Function to build LPS array
vector<int> buildLPS(vector<int>& b) {
int m = b.size();
// LPS array
vector<int> lps(m, 0);
// Length of previous longest prefix suffix
int len = 0;
// Start from index 1 because lps[0] is always 0
int i = 1;
while (i < m) {
// If current elements match
if (b[i] == b[len]) {
// Increase prefix length
len++;
// Store it in lps
lps[i] = len;
i++;
}
else {
// Try smaller prefix
if (len != 0) {
len = lps[len - 1];
}
else {
// No prefix possible
lps[i] = 0;
i++;
}
}
}
return lps;
}
vector<int> search(vector<int> &a, vector<int> &b) {
int n = a.size();
int m = b.size();
// Build LPS array for pattern
vector<int> lps = buildLPS(b);
// Store answer
vector<int> ans;
// Pointer for a[]
int i = 0;
// Pointer for b[]
int j = 0;
while (i < n) {
// If elements match
if (a[i] == b[j]) {
i++;
j++;
}
// Full pattern matched
if (j == m) {
// Store starting index
ans.push_back(i - m);
// Continue searching
j = lps[j - 1];
}
// Mismatch happens
else if (i < n && a[i] != b[j]) {
// Move j using lps
if (j != 0) {
j = lps[j - 1];
}
else {
// Move i if no prefix available
i++;
}
}
}
return ans;
}
};