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

字典树

时间:2020-01-18 21:36:42      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:bool   ++   turn   als   pre   字符串   false   lse   return   

int trie[SIZE][26], tot=1;//初始化,假设字符串由小写字母构成
bool ed[SIZE];
void ins(char *str)
{
    int len=strlen(str),p=1;
    for(int k=0;k<len;k++)
    {
        int ch=str[k]-a;
        if(trie[p][ch]==0) trie[p][ch]=++tot;
        p=trie[p][ch];
    }
    ed[p]=true;
}
bool sea(char *str)
{
    int len=strlen(str),p=1;
    for(int k=0;k<len;k++)
    {
        int ch=str[k]-a;
        p=trie[p][ch];
        if(p==0) return false;
    }
    return ed[p];
}

字典树

标签:bool   ++   turn   als   pre   字符串   false   lse   return   

原文地址:https://www.cnblogs.com/ChildeZhe/p/12209978.html

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