码迷,mamicode.com
首页 > 其他好文 > 详细

HDU1251(字典树)

时间:2016-01-11 09:06:33      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:

#include"cstdio"
#include"cstring"
using namespace std;
const int N=26;
struct node{
    int t;
    node* next[N];
    node()
    {
        t=0;
        for(int i=0;i<N;i++)    next[i]=NULL;
    }
};
node* root;

void insert(char *s)
{
    node* p=root;
    for(int i=0;s[i];i++)
    {
        int k=s[i]-a;
        if(p->next[k]==NULL)    p->next[k]=new node();
        p=p->next[k];
        p->t++;
    }
}

int search(char *s)
{
    node *p=root;
    int i;
    for(i=0;s[i];i++)
    {
        int k=s[i]-a;
        if(p->next[k]==NULL)    return 0;
        p=p->next[k];
    }
    return p->t;
}
void del(node* p)
{
    for(int i=0;i<N;i++)
    {
        if(p->next[i]!=NULL)
        {
            del(p->next[i]);
        }        
    }
    delete p;
}
int main()
{
    char s[15];
    root=new node();
    while(gets(s)&&*s)
    {
        insert(s);
    }
    while(gets(s))
    {
        printf("%d\n",search(s));
    }
    del(root);
    return 0;
}

 

HDU1251(字典树)

标签:

原文地址:http://www.cnblogs.com/program-ccc/p/5120110.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!