hdu 1251 字典树的简单应用
2011-10-12 14:08 javaspring 阅读(189) 评论(0) 编辑 收藏 举报是一道字典树的简单应用,群里面组织的专题练习,又做了一遍,比较简单,属于字典树的入门题。。。。。。。。题目:
统计难题
Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 131070/65535 K (Java/Others)Total Submission(s): 7637 Accepted Submission(s): 2974
Problem Description
Ignatius最近遇到一个难题,老师交给他很多单词(只有小写字母组成,不会有重复的单词出现),现在老师要他统计出以某个字符串为前缀的单词数量(单词本身也是自己的前缀).
Input
输入数据的第一部分是一张单词表,每行一个单词,单词的长度不超过10,它们代表的是老师交给Ignatius统计的单词,一个空行代表单词表的结束.第二部分是一连串的提问,每行一个提问,每个提问都是一个字符串.
注意:本题只有一组测试数据,处理到文件结束.
注意:本题只有一组测试数据,处理到文件结束.
Output
对于每个提问,给出以该字符串为前缀的单词的数量.
Sample Input
banana band bee absolute acm ba b band abc
Sample Output
2 3 1 0
#include <iostream> #include <cstdio> #include <string.h> #include <string> #include <malloc.h> using namespace std; struct Tire{ int count; Tire *tire[26]; }*a; void init(){ a=(Tire *)malloc(sizeof(Tire)); for(int i=0;i<26;++i) a->tire[i]=NULL; } void insert(char ch[]){ int len=strlen(ch); Tire *head=a; for(int i=0;i<len;++i){ int k=ch[i]-'a'; if(head->tire[k]!=NULL){ head=head->tire[k]; head->count++; } else{ head->tire[k]=new Tire; head=head->tire[k]; head->count=1; for(int j=0;j<26;++j) head->tire[j]=NULL; } } } int find(char ch[]){ int len=strlen(ch); Tire *head=a; int i,k; for(i=0;i<len;++i){ k=ch[i]-'a'; if(head->tire[k]==NULL){ return 0; } else{ head=head->tire[k]; } } return head->count; } int main(){ char s[10],ss[10]; init(); int len,num=0; while(gets(s)){ len=strlen(s); if(len==0) break; insert(s); } while(gets(ss)){ num=find(ss); printf("%d\n",num); } return 0; }