Problem Description Ignatius最近遇到一個難題,老師交給他很多單詞(只有小寫字母組成,不會有重復的單詞出現),現在老師要他統計出以某個字符串為前綴的單詞數量(單詞本身也是自己的前綴).
banana band bee absolute acm ba b band abc
2 3 1 0
/** hdu 1251 Tire樹(字典樹)的應用 解題思路:構造字典樹,查詢公共前綴的個數,算是個模板吧 */ #include#include #include #include using namespace std; struct node { int count; node *childs[26]; node() { count=0; for(int i=0;i<26;i++) { childs[i]=NULL; } } }; node *root=new node; node *current,*newnode; void insert(char *str) { current=root; int len=strlen(str); for(int i=0;i childs[m]!=NULL) { current=current->childs[m]; ++(current->count); } else { newnode=new node; ++(newnode->count); current->childs[m]=newnode; current=newnode; } } } int search(char *str) { current=root; int len=strlen(str); for(int i=0;i childs[m]==NULL) return 0; current=current->childs[m]; } return current->count; } int main() { char str[20]; while(gets(str),strcmp(str,)) { insert(str); } while(gets(str)!=NULL) { printf(%d ,search(str)); } return 0; }