首页 > 其他 > 详细

hiho一下

时间:2014-07-16 17:02:46      阅读:348      评论:0      收藏:0      [点我收藏+]
#include <iostream>
#include <stdio.h>
using namespace std;
struct Tire{
    int num;
    Tire* next[26];
    Tire()
    {
        num=0;
        int i;
        for(i=0;i<26;i++)
            next[i] = NULL;
    }
}tree;

void Insert(char word[])
{
    Tire* p = &tree;
    int i;
    for(i=0;word[i];i++){
        int t = word[i]-a;
        if(p->next[t]==NULL)
            p->next[t] = new Tire;
        p = p->next[t];
        p->num++;
    }
}

int Find(char word[])
{
    Tire* p = &tree;
    int i;
    for(i=0;word[i];i++){
        int t = word[i]-a;
        if(p->next[t]==NULL)
            return 0;
        p = p->next[t];
    }
    return p->num;
}

int main()
{
    int n;
    char word[11];
    //字典
    scanf("%d",&n);
    gets(word);
    while(n--){    //读取单词n次
        gets(word);    
        Insert(word);    //将单词插入到字典树中
    }
    //询问
    scanf("%d",&n);
    gets(word);    //将回车读入
    while(n--){
        gets(word);
        printf("%d\n",Find(word));    //查询以word为前缀的单词出现过几次
    }
    return 0;
}

 

是时候学一下Trie了。挺简单的。其实字母树就是一棵多维的线段树。用来统计。

当然zkw那么牛逼我比不了,只能随便粘粘代码

hiho一下,布布扣,bubuko.com

hiho一下

原文:http://www.cnblogs.com/Rainb/p/3847987.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!