牛客trie树
作者:
hongye
,
2025-04-02 07:53:53
·辽宁
,
所有人可见
,
阅读 2
#include <iostream>
#include <string>
using namespace std;
const int N = 150001;
int tree[N][26];
int ed[N];
int path[N];
int index = 1;
void insert(string& s) {
int root = 0;
path[root]++;
for (int i = 0; i < s.size(); i++) {
if (tree[root][s[i] - 'a'] > 0) {
root = tree[root][s[i] - 'a'];
} else {
tree[root][s[i] - 'a'] = index;
root = index++;
}
path[root]++;
}
ed[root]++;
}
bool search(string&s){
int root = 0;
for(int i=0;i<s.size();i++){
if (tree[root][s[i] - 'a'] > 0) {
root = tree[root][s[i] - 'a'];
} else {
return false;
}
}
return ed[root];
}
int fin(string& s) {
int root = 0;
for (int i = 0; i < s.size(); i++) {
if (tree[root][s[i] - 'a'] > 0) {
root = tree[root][s[i] - 'a'];
} else {
return 0;
}
}
return path[root];
}
void delate(string& s) {
int root = 0;
for (int i = 0; i < s.size(); i++) {
if (tree[root][s[i] - 'a'] > 0) {
root = tree[root][s[i] - 'a'];
} else {
return;
}
if (--path[root] == 0) {
tree[root][s[i] - 'a'] = 0;
}
}
ed[root]--;
}
int main() {
int n, op;
string s;
cin >> n;
while (n--) {
cin >> op >> s;
if (op == 1) {
insert(s);
} else if (op == 2) {
delate(s);
} else if (op == 3) {
if (search(s)) {
cout << "YES" << endl;
} else {
cout << "NO" << endl;
}
} else {
cout << fin(s) << endl;
}
}
}