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

字典树

时间:2020-07-21 14:19:54      阅读:64      评论:0      收藏:0      [点我收藏+]

标签:可操作性   字符串   lang   深度   pre   操作   比较   str   oid   

字典树

字典树比较普通字符串比较而言,字符的可操作性更强

const int maxn=5e5+5;		//maxn为总结点个数,不是总深度
struct trie{
    int nex[maxn][26],cnt=0;
    bool exist[maxn];
    void insert(string s){
        int slen=s.length(),p=0;
        for(int i=0;i<slen;++i){
            int c=s[i]-‘a‘;
            if(!nex[p][c]) nex[p][c]=++cnt;
            p=nex[p][c];
        }
        exist[p]=1;
    }
    bool find(string s){
        int slen=s.length(),p=0;
        for(int i=0;i<slen;++i){
            int c=s[i]-‘a‘;
            if(!nex[p][c]) return 0;
            p=nex[p][c];
        }
        return exist[p];
    }
};

字典树

标签:可操作性   字符串   lang   深度   pre   操作   比较   str   oid   

原文地址:https://www.cnblogs.com/CADCADCAD/p/13354224.html

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