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

codevs 4189 字典(字典树)

时间:2016-05-08 09:08:24      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

#include<iostream>
#include<cstdio>
#include<cstring>
#define maxn 300100
#define maxx 1010
using namespace std;
char s[maxx];
struct node
{
    int next[30];
    bool w;
}tree[maxn];
int tot;
void add()
{
    int l=strlen(s),i,j,k;
    int now=0;
    for(i=0;i<l;i++)
    {
        int x=s[i]-a+1;
        if(tree[now].next[x])
        now=tree[now].next[x];
        else
        {
            ++tot;
            tree[now].next[x]=tot;
            now=tot;
        }
    }
    tree[now].w=1;
}
int find()
{
    int l=strlen(s),i,j,k;
    i=0;
    int now=0;
    while(i<l)
    {
        int x=s[i]-a+1;
        if(tree[now].next[x])
        {
            i++;
            now=tree[now].next[x];
            continue;
        }
        else
        return 0;
    }
    return 1;
}
int main()
{
    int n,m,i,j,k;
    scanf("%d",&n);
    for(i=1;i<=n;i++)
    {
        scanf("%s",s);
        add();
    }
    scanf("%d",&m);
    for(i=1;i<=m;i++)
    {
        scanf("%s",s);
        if(find())
        printf("YES\n");
        else
        printf("NO\n");
    }
    return 0;
}

 

codevs 4189 字典(字典树)

标签:

原文地址:http://www.cnblogs.com/dingmenghao/p/5469728.html

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