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

trie树

时间:2017-08-16 00:50:07      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:sizeof   next   bool   bsp   ++   malloc   str   包括   dem   

这是学习AC自动机的第一步,包括用指针构造树结构的demo,这个程序将会大有用处。

struct node{
    node* next[26];
    node* fail;//fail指针是AC自动机里需要用到的
    int sum;
//当然也可以添加其他任何需要的信息
};

struct node* New(){//建立指针新节点的demo
    struct node*nod=(struct node*)malloc(sizeof(struct node));
    rep(i,0,25)nod->next[i]=0;
    nod->sum=0;nod->fail=0;
    return nod;
}
struct node*root=New();//建立根节点(trie树的根节点没有任何信息)
void Insert(char*s){
    node*p=root;
    int len=strlen(s);
    rep(i,0,len-1){
        int x=s[i]-a;
        if(p->next[x]==NULL)p->next[x]=New();
        p=p->next[x];
    }
    p->sum++;
}
bool Find(char*s){
    node*p=root;
    int len=strlen(s);
    rep(i,0,len-1){
        int x=s[i]-a;
        if(p->next[x]==NULL)return false;
        p=p->next[x];
    }
    return p->sum;
}

 

trie树

标签:sizeof   next   bool   bsp   ++   malloc   str   包括   dem   

原文地址:http://www.cnblogs.com/let-dream-fly/p/7368490.html

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