解释这段代码:#include<iostream> #include<string> using namespace std; int trie[1000010][26]; // using an array to implement the trie int num[1000010] = { 0 }; // the number of words prefixed with a certain string int pos = 1; // for the storage position of a string void Insert(char str[]) { // insert str to the trie int c = 0; for (int i = 0; str[i]; i++) { int n = str[i] - 'a'; if (trie[c][n] == 0) // if there is no corresponding character trie[c][n] = pos++; c = trie[c][n]; num[c]++; } } int Find(char str[]) { // return the number of words prefixed with str int c = 0; for (int i = 0; str[i]; i++) { int n = str[i] - 'a'; if (trie[c][n] == 0) return 0; c = trie[c][n]; } return num[c]; } int main() { char str[11]; while (getline(cin,str)) { if (!strlen(str)) break; // input an empty line Insert(str); } while (gets(str)) cout << Find(str) << endl; return 0; }
时间: 2024-04-25 07:26:28 浏览: 78
这段代码是实现了一个 Trie 树(字典树),用于字符串的存储和查找。Trie 树是一种树形结构,用于存储一组字符串,每个节点表示一个字符串的前缀,从根节点到某个节点的路径表示一个字符串。代码中使用一个二维数组 trie 来实现 Trie 树,其中 trie[i][j] 表示第 i 个节点的第 j 个子节点的编号。使用 num 数组记录每个节点代表的字符串在 Trie 树中出现的次数。
具体实现中,Insert 函数用于向 Trie 树中插入字符串。对于每个字符,从根节点开始向下遍历,若存在对应的子节点,则将遍历指针移向该子节点,否则新建一个节点。每经过一个节点,就将该节点代表的字符串出现次数加1。
Find 函数用于查找以给定字符串为前缀的字符串的数量。同样是从根节点开始向下遍历,若遇到某个字符没有对应的子节点,则说明 Trie 树中不存在以该字符串为前缀的字符串,返回0;否则返回最后一个字符所在节点的出现次数。
主函数中,先读入一些字符串,将其插入 Trie 树中。然后从标准输入中读取一些字符串,查找以其为前缀的字符串的数量,并输出结果。
相关问题
将代码的gets方法改为getchar方法:#include<iostream> #include<string> #include<bits/stdc++.h> using namespace std; const int N = 1e6; int trie[N + 50][26]; int num[N + 50] = { 0 }; int pos = 1; void Insert(char str[]) { int index = 0; for (int i = 0; str[i]; i++) { int n = str[i] - 'a'; if (trie[index][n] == 0) trie[index][n] = pos++; index = trie[index][n]; num[index]++; } } int Find(char str[]) { int index = 0; for (int i = 0; str[i]; i++) { int n = str[i] - 'a'; if (trie[index][n] == 0) return 0; index = trie[index][n]; } return num[index]; } int main() { char str[11]; while (gets(str)) { if (!strlen(str)) break; Insert(str); } while (gets(str)) { int res = Find(str); if (res > 0) cout << "YES" << endl; else cout << "NO" << endl; } return 0; }
好的,代码的修改如下:
```c++
#include<iostream>
#include<string>
#include<bits/stdc++.h>
using namespace std;
const int N = 1e6;
int trie[N + 50][26];
int num[N + 50] = { 0 };
int pos = 1;
void Insert(char str[]) {
int index = 0;
for (int i = 0; str[i]; i++) {
int n = str[i] - 'a';
if (trie[index][n] == 0)
trie[index][n] = pos++;
index = trie[index][n];
num[index]++;
}
}
int Find(char str[]) {
int index = 0;
for (int i = 0; str[i]; i++) {
int n = str[i] - 'a';
if (trie[index][n] == 0)
return 0;
index = trie[index][n];
}
return num[index];
}
int main() {
char str[11];
int i = 0;
while ((str[i] = getchar()) != '\n') { // 读入一行
i++;
}
str[i] = '\0';
i = 0;
while (str[i] != '\0') { // 处理每个单词
int j = i;
while (str[j] != ' ' && str[j] != '\0') {
j++;
}
char word[11];
int k = 0;
for (int p = i; p < j; p++) {
word[k++] = str[p];
}
word[k] = '\0';
Insert(word);
i = j + 1;
}
while ((str[i] = getchar()) != EOF) { // 读入查询
if (str[i] == '\n') {
int res = Find(str);
if (res > 0)
cout << "YES" << endl;
else
cout << "NO" << endl;
i = 0;
} else {
i++;
}
}
return 0;
}
```
修改思路:首先需要读入一行字符串,然后逐个处理每个单词,插入到 Trie 树中;之后每次读入查询时,读入一行,然后对每个单词查询 Trie 树,并输出结果。在这个过程中,需要注意每个单词之间的分割符号。
去掉注释:#include <iostream>#include <queue>#include <cstring>using namespace std;const int MAXN = 100005; // 最大字符串长度const int MAXM = 26; // 字符集大小struct AC_Automaton { int ch[MAXN][MAXM]; // Trie树 int val[MAXN]; // 节点值 int fail[MAXN]; // 失败指针 int tot; // 节点总数 void init() { memset(ch, 0, sizeof(ch)); memset(val, 0, sizeof(val)); memset(fail, 0, sizeof(fail)); tot = 0; } void insert(string s, int v) { // 插入字符串s,节点值为v int u = 0; for (int i = 0; i < s.size(); i++) { int c = s[i] - 'a'; if (!ch[u][c]) ch[u][c] = ++tot; u = ch[u][c]; } val[u] += v; } void build() { // 构建AC自动机 queue<int> q; for (int i = 0; i < MAXM; i++) { if (ch[0][i]) q.push(ch[0][i]); } while (!q.empty()) { int u = q.front(); q.pop(); for (int i = 0; i < MAXM; i++) { if (ch[u][i]) { fail[ch[u][i]] = ch[fail[u]][i]; q.push(ch[u][i]); } else { ch[u][i] = ch[fail[u]][i]; } } val[u] += val[fail[u]]; // 合并节点值 } } int query(string s) { // 查询字符串s中出现的模式串的节点值之和 int u = 0, res = 0; for (int i = 0; i < s.size(); i++) { u = ch[u][s[i] - 'a']; res += val[u]; } return res; }} AC;int main() { AC.init(); int n; cin >> n; for (int i = 1; i <= n; i++) { string s; int v; cin >> s >> v; AC.insert(s, v); } AC.build(); string t; cin >> t; cout << AC.query(t) << endl; return 0;}
#include <iostream>
#include <queue>
#include <cstring>
using namespace std;
const int MAXN = 100005; // 最大字符串长度
const int MAXM = 26; // 字符集大小
struct AC_Automaton {
int ch[MAXN][MAXM]; // Trie树
int val[MAXN]; // 节点值
int fail[MAXN]; // 失败指针
int tot; // 节点总数
void init() {
memset(ch, 0, sizeof(ch));
memset(val, 0, sizeof(val));
memset(fail, 0, sizeof(fail));
tot = 0;
}
void insert(string s, int v) { // 插入字符串s,节点值为v
int u = 0;
for (int i = 0; i < s.size(); i++) {
int c = s[i] - 'a';
if (!ch[u][c]) ch[u][c] = ++tot;
u = ch[u][c];
}
val[u] += v;
}
void build() { // 构建AC自动机
queue<int> q;
for (int i = 0; i < MAXM; i++) {
if (ch[0][i]) q.push(ch[0][i]);
}
while (!q.empty()) {
int u = q.front();
q.pop();
for (int i = 0; i < MAXM; i++) {
if (ch[u][i]) {
fail[ch[u][i]] = ch[fail[u]][i];
q.push(ch[u][i]);
} else {
ch[u][i] = ch[fail[u]][i];
}
}
val[u] += val[fail[u]]; // 合并节点值
}
}
int query(string s) { // 查询字符串s中出现的模式串的节点值之和
int u = 0, res = 0;
for (int i = 0; i < s.size(); i++) {
u = ch[u][s[i] - 'a'];
res += val[u];
}
return res;
}
} AC;
int main() {
AC.init();
int n;
cin >> n;
for (int i = 1; i <= n; i++) {
string s;
int v;
cin >> s >> v;
AC.insert(s, v);
}
AC.build();
string t;
cin >> t;
cout << AC.query(t) << endl;
return 0;
}
阅读全文