forked from kamyu104/LeetCode-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
html-entity-parser.cpp
158 lines (147 loc) · 5.04 KB
/
html-entity-parser.cpp
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
// Time: O(n + m + z) = O(m), n is the total size of patterns
// , m is the total size of query string
// , z is the number of all matched strings
// , O(n) = O(1), O(z) = O(m) in this problem
// Space: O(t) = O(1), t is the total size of ac automata trie
// , O(t) = O(1) in this problem
struct AhoNode {
unordered_map<char, AhoNode *> children;
vector<int> indices;
AhoNode *suffix;
AhoNode *output;
AhoNode() :
suffix(nullptr),
output(nullptr) {}
};
class AhoTrie {
public:
AhoTrie(const vector<string>& patterns) : root_(createACTrie(patterns)) {
node_ = createACSuffixAndOutputLinks(root_);
}
vector<int> step(char letter) {
while (node_ && !node_->children[letter]) {
node_ = node_->suffix;
}
node_ = node_ ? node_->children[letter] : root_;
return getACNodeOutputs(node_);
}
private:
AhoNode *createACTrie(const vector<string>& patterns) { // Time: O(n), Space: O(t)
auto root = new AhoNode();
for (int i = 0; i < patterns.size(); ++i) {
auto node = root;
for (const auto& c : patterns[i]) {
if (!node->children[c]) {
node->children[c] = new AhoNode();
}
node = node->children[c];
}
node->indices.emplace_back(i);
}
return root;
}
AhoNode *createACSuffixAndOutputLinks(AhoNode *root) { // Time: O(n), Space: O(t)
queue<AhoNode *> q;
for (const auto& kvp : root->children) {
const auto& node = kvp.second;
if (!node) {
continue;
}
q.emplace(node);
node->suffix = root;
}
while (!q.empty()) {
auto node = q.front(); q.pop();
for (int c = 0; c < node->children.size(); ++c) {
if (!node->children[c]) {
continue;
}
auto child = node->children[c];
q.emplace(child);
auto suffix = node->suffix;
while (suffix && !suffix->children[c]) {
suffix = suffix->suffix;
}
child->suffix = suffix ? suffix->children[c] : root;
child->output = !child->suffix->indices.empty() ?
child->suffix : child->suffix->output;
}
}
return root;
}
vector<int> getACNodeOutputs(AhoNode *node) { // Time: O(z)
vector<int> result;
for (const auto& i : node_->indices) {
result.emplace_back(i);
// return result;
}
auto output = node_->output;
while (output) {
for (const auto& i : output->indices) {
result.emplace_back(i);
// return result;
}
output = output->output;
}
return result;
}
AhoNode * const root_;
AhoNode *node_;
};
class Solution {
public:
string entityParser(string text) {
static const vector<string> patterns = {""", "'", "&", ">", "<", "⁄"};
static const vector<string> chars = {"\"", "'", "&", ">", "<", "/"};
AhoTrie trie(patterns);
vector<pair<int, int>> positions;
for (int i = 0; i < text.length(); ++i) {
for (const auto& j : trie.step(text[i])) {
positions.emplace_back(i - patterns[j].length() + 1, j);
}
}
string result;
for (int i = 0, j = 0; i != text.length();) {
if (j == positions.size() || i != positions[j].first) {
result.push_back(text[i]);
++i;
} else {
result += chars[positions[j].second];
i += patterns[positions[j].second].length();
++j;
}
}
return result;
}
};
// Time: O(n)
// Space: O(1)
class Solution2 {
public:
string entityParser(string text) {
static const vector<string> patterns = {""", "'", "&", ">", "<", "⁄"};
static const vector<string> chars = {"\"", "'", "&", ">", "<", "/"};
string result;
for (int i = 0; i != text.length();) {
if (text[i] != '&') {
result.push_back(text[i]);
++i;
} else {
bool is_found = false;
for (int j = 0; j < patterns.size(); ++j) {
if (patterns[j] == text.substr(i, patterns[j].length())) {
is_found = true;
result += chars[j];
i += patterns[j].length();
break;
}
}
if (!is_found) {
result.push_back(text[i]);
++i;
}
}
}
return result;
}
};