• hdu2222Keywords Search (特里)


    Problem Description
    In the modern time, Search engine came into the life of everybody like Google, Baidu, etc.
    Wiskey also wants to bring this feature to his image retrieval system.
    Every image have a long description, when users type some keywords to find the image, the system will match the keywords with description of image and show the image which the most keywords be matched.
    To simplify the problem, giving you a description of image, and some keywords, you should tell me how many keywords will be match.

    Input
    First line will contain one integer means how many cases will follow by.
    Each case will contain two integers N means the number of keywords and N keywords follow. (N <= 10000)
    Each keyword will only contains characters 'a'-'z', and the length will be not longer than 50.
    The last line is the description, and the length will be not longer than 1000000.

    Output
    Print how many keywords are contained in the description.

    Sample Input
    1 5 she he say shr her yasherhs

    Sample Output
    3
    注意:在n个keyword中能够反复。在字符串中,前面出现的keyword后面就不能重加。

    #include<stdio.h>
    #include<malloc.h>
    typedef struct nnn
    {
        int flag;
        struct nnn *next[26];
    }node;
    node *builde()
    {
        node *p=(node*)malloc(sizeof(node));
        p->flag=0;
        for(int i=0;i<26; i++)
        p->next[i]=NULL;
        return p;
    }
    node *root;
    void insert(char str[])
    {
        node *p=root;
        for(int i=0;str[i]!='';i++)
        {
            if(p->next[str[i]-'a']==NULL)
            p->next[str[i]-'a']=builde();
            p=p->next[str[i]-'a'];
        }
        p->flag++;
    }
    int count(char str[])
    {
        int sum=0;
        for(int i=0;str[i]!='';i++)
        {
            node *p=root;
            for(int j=i;str[j]!='';j++)
            {
                if(p->next[str[j]-'a']==NULL)
                    break;
                p=p->next[str[j]-'a'];
                sum+=p->flag; p->flag=0;
            }
        }
        return sum;
    }
    char str[1000005];
    int main()
    {
        int t,n;
        scanf("%d",&t);
        while(t--)
        {
            scanf("%d",&n);
            root=builde();
            while(n--)
            {
                scanf("%s",str);
                insert(str);
            }
            scanf("%s",str);
            printf("%d
    ",count(str));
        }
    }
    


    版权声明:本文博客原创文章。博客,未经同意,不得转载。

  • 相关阅读:
    生成随机端口函数
    于获得MFC窗口其它类指针的方法
    VC6.0中使用ADO操作Access数据库 (转)
    【原创】C++利用IXMLDOM解析XML文件。
    转帖:用MFC对话框做无闪烁图片重绘一一 程序设计: icemen
    C代码优化方案(转)
    【转】C++ Socket UDP "Hello World!"
    线程中使用UpdateData出错解决方法(转)
    C语言调试打印log函数。
    Windows Sockets 网络编程(三) —— WINDOWS SOCKETS 1.1 程序设计(转)
  • 原文地址:https://www.cnblogs.com/hrhguanli/p/4639314.html
Copyright © 2020-2023  润新知