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

hdu-1247

时间:2016-02-17 20:53:37      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:

思路:

字典树模板题


#include <iostream>
#include <cstring>
#include <cstdio>
#define MAX 500007
using namespace std;

struct node
{
    int e;
    struct node* next[26];
};
node* root;
char str[MAX][50];

void Insert(char* s)
{
    node* ptr = root;
    for(;*s != \0;s++)
    {
        int n = *s-a;
        if(ptr->next[n] == NULL)
            ptr->next[n] = new node();
        ptr = ptr->next[n];
    }
    ptr->e = 1;
}

bool find2(char* s)
{
    node* ptr = root;
    for(;*s != \0;s++)
    {
        int n = *s-a;
        ptr = ptr->next[n];
        if(ptr != NULL) {
            if(ptr->e==1 && *(s+1)==\0)
                return true;
        }
        else
            return false; 
    }
    return false;
}

bool find1(char* s)
{
    node* ptr = root;
    for(;*s != \0;s++)
    {
        int n = *s-a;
        ptr = ptr->next[n];
        if(ptr->e==1 && find2(s+1))
            return true;
    }
    return false;
}

int main()
{
    int i = 0;
    root = new node();
    while(scanf("%s",str[i]) != EOF) {
        Insert(str[i]);
        i++;
    }
    for(int j = 0;j < i;j++)
        if(find1(str[j]))
            cout<<str[j]<<endl;
    return 0;
}

 

hdu-1247

标签:

原文地址:http://www.cnblogs.com/immortal-worm/p/5196406.html

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