前端开发算法学习-数据结构-4

字典树Trie

又称单词查找树或者键树,是一种树结构,一种哈希树的变种。典型应用是用于统计和排序大量的字符串,经常被搜索引擎系统用于文本词频统计。

在这里插入图片描述

基本性质

  1. 根节点不包含字符,除根节点外每一个节点都包含一个字符
  2. 从根节点到某一个节点,路径上经过的字符串链接起来,为该节点对应的字符串
  3. 每个节点的所有子节点包含的字符都不相同

实现一个字典树

// 字典树
class Trie {
    constructor() {
        this.children = {};
        this.endOfWord = '#';
    }
    insert(word) {
        let node = this.children;
        for (const ch of word) {
            if (!node[ch]) {
                node[ch] = {};
            }
            node = node[ch];
        }
        node.isEnd = this.endOfWord;
    }
    searchPrefix(prefix) {
        let node = this.children;
        for (const ch of prefix) {
            if (!node[ch]) {
                return false;
            }
            node = node[ch];
        }
        return node;
    }
    search(word) {
        let node = this.searchPrefix(word);
        return node !== undefined && node.isEnd === this.endOfWord;
    }
    startsWith(prefix) {
        return this.searchPrefix(prefix);
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值