描述
Ignatius最近遇到一个难题,老师交给他很多单词(只有小写字母组成,不会有重复的单词出现),现在老师要他统计出以某个字符串为前缀的单词数量(单词本身也是自己的前缀).
输入
输入数据的第一部分是一张单词表,每行一个单词,单词的长度不超过10,它们代表的是老师交给Ignatius统计的单词,一个空行代表单词表的结束.第二部分是一连串的提问,每行一个提问,每个提问都是一个字符串.
注意:本题只有一组测试数据,处理到文件结束.
输出
对于每个提问,给出以该字符串为前缀的单词的数量.
样例输入
banana
band
bee
absolute
acm
ba
b
band
abc
band
bee
absolute
acm
ba
b
band
abc
#include<stdio.h>
#define MAX 26 //字符集大小
typedef struct TrieNode
{
int nCount;
struct TrieNode *next[MAX];
}TrieNode;
TrieNode Memory[1000000];
int allocp=0;
void InitTrieRoot(TrieNode **pRoot)//初始化
{
*pRoot=NULL;
}
TrieNode *CreateTrieNode()//创建新结点
{
int i;
TrieNode *p;
p=&Memory[allocp++];
p->nCount=1;
for(i=1;i<MAX;i++)
{
p->next[i]=NULL;
}
return p;
}
void InsertTrie(TrieNode **pRoot,char *s)//插入
{
int i,k;
TrieNode *p;
if(!(p=*pRoot))
p=*pRoot=CreateTrieNode();
i=0;
while(s[i])
{
k=s[i++]-'a';//确定branch
if(p->next[k])
p->next[k]->nCount++;
else
p->next[k]=CreateTrieNode();
p=p->next[k];
}
}
int SearchTrie(TrieNode **pRoot,char *s)//查找
{
TrieNode *p;
int i,k;
if(!(p=*pRoot))
return 0;
i=0;
while(s[i])
{
k=s[i++]-'a';
if(p->next[k]==NULL) return 0;
p=p->next[k];
}
return p->nCount;
}
int main()
{
char str[11];
TrieNode *Root=NULL;
InitTrieRoot(&Root);
while(gets(str)&&str[0])
{
InsertTrie(&Root,str);
}
while(gets(str))
{
printf("%d\n",SearchTrie(&Root,str));
}
return 0;
}