模板 :
#include<string.h>
#include<stdio.h>
#include<malloc.h>
#include<iostream>
#include<algorithm>
using namespace std;
const int maxn = 26;
struct Trie
{
Trie *Next[maxn];
int v;
inline void init(){
this->v = 1;
for(int i=0; i<maxn; i++)
this->Next[i] = NULL;
}
};
Trie *root = (Trie *)malloc(sizeof(Trie));
void CreateTrie(char *str)
{
int len = strlen(str);
Trie *p = root, *tmp;
for(int i=0; i<len; i++){
int idx = str[i]-'a';
if(p->Next[idx] == NULL){
tmp = (Trie *)malloc(sizeof(Trie));
tmp->init();
p->Next[idx] = tmp;
}else p->Next[idx]->v++;
p = p->Next[idx];
}
p->v = -1;//若为结尾,则将v改成-1,当然字典树里面的变量都是要依据题目
//设置并且在特定位置赋值的
}
int FindTrie(char *str)
{
int len = strlen(str);
Trie *p = root;
for(int i=0; i<len; i++){
int idx = str[i]-'a';
p = p->Next[idx];
//...进行一系列操作
}
}
inline void DelTrie(Trie *T)
{
if(T == NULL) return ;
for(int i=0; i<maxn; i++){
if(T->Next[i] != NULL)
DelTrie(T->Next[i]);
}
free(T);
return ;
}
int main(void)
{
root.init();//!!!
//...
}
#include<string.h>
#include<stdio.h>
#include<malloc.h>
#include<iostream>
#include<algorithm>
using namespace std;
const int maxn = 26 + 1;
struct Trie
{
int Next[maxn], v;
inline void init(){
v = 1;
memset(Next, -1, sizeof(Next));
}
};
struct Trie Node[1000000]; // 字典树可能最多的节点数,注意开足了!
int tot = 0;
void CreateTrie(char *str)
{
int len = strlen(str);
int now = 0;
for(int i=0; i<len; i++){
int idx = str[i]-'a';
int nxt = Node[now].Next[idx];
if( nxt == -1){
nxt = ++tot;
Node[nxt].init();
Node[now].Next[idx] = nxt;
}else Node[nxt].v++;
now = nxt;
}
// Node[now].v = //尾部标志
}
int FindTrie(char *str)
{
int len = strlen(str);
int now = 0;
int nxt;
for(int i=0; i<len; i++){
int idx = str[i]-'a';
if(Node[now].Next[idx] != -1) now = Node[now].Next[idx];
else return 0;
}
return Node[now].v;//返回该返回的值
}
字典树算法参考 ==> http://www.cnblogs.com/tanky_woo/archive/2010/09/24/1833717.html
IOI论文《浅析字母树在信息学竞赛中的应用》 ==> http://www.doc88.com/p-434727490439.html
相关题目 :
① HUD 1251
题意 : 给出很多单词(只有小写字母组成,不会有重复的单词出现),要求统计出以某个字符串为前缀的单词数量(单词本身也是自己的前缀).
分析 : 模板题,直接累加前缀即可
///数组版
#include<string.h>
#include<stdio.h>
#include<malloc.h>
#include<iostream>
#include<algorithm>
using namespace std;
const int maxn = 26 + 1;
struct Trie
{
int Next[maxn], v;
inline void init(){
v = 1;
memset(Next, -1, sizeof(Next));
}
};
struct Trie Node[1000000]; // 字典树可能最多的节点数,注意开足了!
int tot = 0;
void CreateTrie(char *str)
{
int len = strlen(str);
int now = 0;
for(int i=0; i<len; i++){
int idx = str[i]-'a';
int nxt = Node[now].Next[idx];
if( nxt == -1){
nxt = ++tot;
Node[nxt].init();
Node[now].Next[idx] = nxt;
}else Node[nxt].v++;
now = nxt;
}
}
int FindTrie(char *str)
{
int len = strlen(str);
int now = 0;
int nxt;
for(int i=0; i<len; i++){
int idx = str[i]-'a';
if(Node[now].Next[idx] != -1) now = Node[now].Next[idx];
else return 0;
}
return Node[now].v;
}
char s[11];
int main(void)
{
Node[0].init();
while(gets(s)){
if(s[0] == '