hdu1247字典树

题目链接:

http://acm.hdu.edu.cn/showproblem.php?pid=1247

最简单的字典树,初始化错了,找了好久都不知道为什么WA

#include <cstdio>
#include <cstring>
#include <iostream>
using namespace std;
#define maxn 50065
#define N 50
struct node
{
    node *nxt[N];
    int isend;
   node()
   {
      isend = 0;
      memset(nxt,0,sizeof(nxt));
   }
};

node* rt;
char ls[maxn][50];

void insert(char c[])
{
    node* t = rt;
    for(int i = 0 ; c[i] ; ++i)
    {
        int x = c[i] - 'a';
        if( t->nxt[x] == NULL)
            t->nxt[x] = new node();
        t = t->nxt[x];
    }
    t->isend = 1;
}

int check(char c[])
{
    node* t = rt;
    for(int i = 0 ; c[i] ; ++i)
    {
        int x = c[i] - 'a';
        if( t->nxt[x] == NULL )return 0;
           t = t->nxt[x];
    }
    return t->isend;
}

int main()
{
    rt = new node();
    int k = 0 ;
    while(scanf("%s",ls[k])!=EOF)
    {
        insert(ls[k]);
        k++;
    }
    for(int i = 0 ; i < k ; ++i)
    {
        for(int j = 1 ; j < strlen(ls[i]) ;  ++j)
        {
            char a[50] = {'\0'};
            char b[50] = {'\0'};
            strncpy(a,ls[i],j);
            strncpy(b,ls[i]+j,strlen(ls[i])-j);
            if( check(a) && check(b) )
            {
                printf("%s\n",ls[i]);
                break;
            }
        }
    }
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值