-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtrie.cpp
34 lines (34 loc) · 1.19 KB
/
trie.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
/// Name: Trie
/// Description:
/// Detail:
/// Guarantee: struct Trie {
/// Dependencies:
/// Parent:
template <typename Node> struct Trie {
template <typename A, A _a0, int alpha> struct BaseNode {
static const A a0 = _a0;
explicit BaseNode(Node* parent):parent(parent){}
Node* extend(int ic) { return not kids[ic] and parent ? suflink->extend(ic) : kids[ic] ? kids[ic] : (Node*)this; }
void buildSuflink() { suflink = parent and parent->parent ? parent->suflink->extend(lastIC()) : parent ? parent : (Node*)this; }
int lastIC() { return (int)(find(parent->kids.begin(), parent->kids.end(), (Node*)this) - parent->kids.begin()); }
Node* parent, *suflink = nullptr;
array<Node*, alpha> kids{};
};
Trie():root(new Node(nullptr)){}
template <typename S> Node* addPattern(S&& pattern) {
auto v = root;
for (auto c : pattern)
v = v->kids[c-Node::a0] = v->kids[c-Node::a0] ? v->kids[c-Node::a0] : new Node(v);
return v;
}
vector<Node*> BFS() {
auto que = vector<Node*>({root});
for (auto i=0; i<(int)que.size(); ++i)
for (auto kid : que[i]->kids)
if (kid)
que.push_back(kid);
return que;
}
void buildSuflinks() { for (auto v : BFS()) v->buildSuflink(); }
Node* root;
};