字典树 板子

Posted andromeda-galaxy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字典树 板子相关的知识,希望对你有一定的参考价值。

#include<bits/stdc++.h>
using namespace std;
struct node
{
    int r;
    node *next[26];
    node()
    {
        r=0;
        memset(next,0,sizeof(next));
    }
};
node root;
int build_trie(string ss)
{
    node *p=&root;
    int flag=0;
    for(int i=0;i<ss.size();i++)
    {
        if( (*p).next[ss[i]-0]==NULL)
        {
            (*p).next[ss[i]-0]=new node;
        }
        if( (*p).r==1) flag=1;
        p=(*p).next[ss[i]-0];
    }
    (*p).r=1;
    if(flag==1) return 1;
    else        return 0;
}

int main()
{
    int temp=0;
    int flag=0;
    string ss;
    while(cin>>ss)
    {
        if(ss=="9")
        {
            temp++;
            if(flag) cout<<"Set "<<temp<<" is not immediately decodable"<<endl;
            else     cout<<"Set "<<temp<<" is immediately decodable"<<endl;
            flag=0;
            for(int i=0;i<=25;i++) root.next[i]=NULL;// zhi zheng qin kong
        }
        else
        {
            if(flag==1) continue;
            if(build_trie(ss)==1) flag=1;
        }
    }
}

 

以上是关于字典树 板子的主要内容,如果未能解决你的问题,请参考以下文章

字典树 && 例题 Xor Sum HDU - 4825 (板子)

可持久化数据结构板子整理(可持久化 线段树/字典树/可并堆)

UVA 11488 Hyper Prefix Sets 字典树

字典树与01字典树

数据结构板子

Trie树——字典树