Trie的创建与搜索与模糊搜索

class Trie {
    private Trie[] children; //定义children 类型为trie的数组 大小为26个
    private boolean isEnd;

    public Trie() {
        children = new Trie[26];
        isEnd = false;
    }
    
    public void insert(String word) {
        Trie node = this;
        for (int i = 0; i < word.length(); i++) { //遍历插入字符串的长度
            char ch = word.charAt(i); //获取第i个字符串
            int index = ch - 'a'; //获取索引值 如"abc" a=0
            if (node.children[index] == null) {
                node.children[index] = new Trie();//    如果对应的子树为空 则创建一个子数
            }
            node = node.children[index];
        }
        node.isEnd = true;
    }
    
    public boolean search(String word) {
        Trie node = searchPrefix(word);
        return node != null && node.isEnd; //精确查找需要最终节点的isEnd为真
    }
    
    public boolean startsWith(String prefix) {
        return searchPrefix(prefix) != null;    //模糊查找只需要最终节点不为空即可
    }

    private Trie searchPrefix(String prefix) {
        Trie node = this; //node首先为根节点
        for (int i = 0; i < prefix.length(); i++) {//遍历真个prefix的长度
            char ch = prefix.charAt(i); //获取首个字符串"abc" a
            int index = ch - 'a';//获取首个字符串"abc" a 的索引值
            if (node.children[index] == null) {
                return null; //如果首个children为空  直接返回null
            }
            node = node.children[index]; //否则继续获取子树的索引
        }
        return node;   //最终返回最后的子数的节点node
    }
}
wAAACH5BAEKAAAALAAAAAABAAEAAAICRAEAOw==
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值