1910: Remove-All-Occurrences-of-a-Substring
Medium
A string-comparison question!
I saw this and decided to utilise the
Knuth-Morris-Pratt Algorithm that I learnt on 07/01/2025.
The only modification you need to make to it is that you need to
retrieve the index
of the last
character on the stack stack
after a
deletion. We do this by storing the corresponding
index
of every character stored onto
the stack.
Code:
class Solution {
public:
<int> generate_LPS (string &s) {
vector<int> LPS;
vector.push_back(0);
LPSint l = 0;
for (int i = 1; i < s.size(); ++i) {
while(l != 0 && s[l] != s[i]) {
= LPS[l-1];
l }
if (s[i] == s[l]) {
++l;
}
.push_back(l);
LPS}
return LPS;
}
(string s, string part) {
string removeOccurrences<int> LPS = generate_LPS(part);
vectorint index = 0;
<pair<char, int>> stack;
vector
for (int i = 0; i < s.size(); ++i) {
while(index != 0 && s[i] != part[index]) {
= LPS[index-1];
index }
if (s[i] == part[index]) {
++index;
}
if (index == part.size()) {
for (int j = 0; j < index-1; ++j) {
.pop_back();
stack}
= stack.size() == 0 ? 0 : stack[stack.size()-1].second;
index } else {
.push_back({s[i], index});
stack}
}
= "";
string ans for (int i = 0; i < stack.size(); ++i) {
+= stack[i].first;
ans }
return ans;
}
};