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

hiho一下

时间:2014-07-16 11:59:07      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   for   io   

#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一下

标签:style   blog   color   os   for   io   

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

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