1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-20 22:17:09 +08:00

Update sentive-words-filter.md

This commit is contained in:
guide 2022-01-13 20:42:40 +08:00
parent 459e643759
commit e9d4a6f169

View File

@ -13,7 +13,7 @@ tag:
### Trie 树
**Trie 树** 也称为字典树、单词查找树,哈系的一种变种,通常被用于字符串匹配,用来解决在一组字符串集合中快速查找某个字符串的问题。像浏览器搜索的关键词提示一般就是基于 Trie 树来做的。
**Trie 树** 也称为字典树、单词查找树,哈系的一种变种,通常被用于字符串匹配,用来解决在一组字符串集合中快速查找某个字符串的问题。像浏览器搜索的关键词提示一般就是基于 Trie 树来做的。
![](./images/sentive-words-filter/brower-trie.png)