博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Leetcode: Implement Trie (Prefix Tree) && Summary: Trie
阅读量:4941 次
发布时间:2019-06-11

本文共 1767 字,大约阅读时间需要 5 分钟。

Implement a trie with insert, search, and startsWith methods.Note:You may assume that all inputs are consist of lowercase letters a-z.

参考百度百科:

trie, also called digital tree and sometimes  or prefix tree (as they can be searched by prefixes)

The time complexity to insert and to search is O(m), where m is the length of the string.

标准Trie树的应用和优缺点

     (1) 全字匹配:确定待查字串是否与集合的一个单词完全匹配。如上代码fullMatch()。

     (2) 前缀匹配:查找集合中与以s为前缀的所有串。

 

     注意:Trie树的结构并不适合用来查找子串。这一点和前面提到的PAT Tree以及后面专门要提到的Suffix Tree的作用有很大不同。

 

      优点: 查找效率比与集合中的每一个字符串做匹配的效率要高很多。在o(m)时间内搜索一个长度为m的字符串s是否在字典里。Predictable O(k) lookup time where k is the size of the key

      缺点:标准Trie的空间利用率不高,可能存在大量结点中只有一个子结点,这样的结点绝对是一种浪费。正是这个原因,才迅速推动了下面所讲的压缩trie的开发。

什么时候用Trie?

It all depends on what problem you're trying to solve. If all you need to do is insertions and lookups, go with a hash table. If you need to solve more complex problems such as prefix-related queries, then a trie might be the better solution. 

 像word search II就是跟前缀有关,如果dfs发现当前形成的前缀都不在字典中,就没必要再搜索下去了,所以用trie不用hashSet

1 class TrieNode { 2     // Initialize your data structure here. 3     int num; //How many words go through this TrieNode 4     TrieNode[] son; //collection of sons 5     boolean isEnd; 6     char val; 7      8     public TrieNode() { 9         this.num = 0;10         this.son = new TrieNode[26];11         this.isEnd = false;12     }13 }14 15 public class Trie {16     private TrieNode root;17 18     public Trie() {19         root = new TrieNode();20     }21 22     // Inserts a word into the trie.23     public void insert(String word) {24         if (word==null || word.length()==0) return;25         char[] arr = word.toCharArray();26         TrieNode node = this.root;27         for (int i=0; i

 

转载于:https://www.cnblogs.com/EdwardLiu/p/5050928.html

你可能感兴趣的文章
自定义RatingBar的一个问题(只显示显示一个星星)
查看>>
剑指Offer--二叉树的镜像
查看>>
PAT-BASIC-1031-查验身份证
查看>>
Python笔记5----集合set
查看>>
连连看小游戏
查看>>
js二级联动
查看>>
谜题32:循环者的诅咒
查看>>
RMI
查看>>
动态切换多数据源的配置
查看>>
win7电脑调整分区后分区不见的文件寻回法子
查看>>
《第一行代码》学习笔记2-Android开发特色
查看>>
bzoj3396 [Usaco2009 Jan]Total flow 水流
查看>>
20165231 2017-2018-2 《Java程序设计》第3周学习总结
查看>>
(180905)如何通过梯度下降法降低损失----Google机器学习速成课程笔记
查看>>
(响应式PC端媒体查询)电脑屏幕分辨率尺寸大全
查看>>
Crystal Reports拉报表报错:Error detected by database DLL
查看>>
Java获取新浪微博cookies
查看>>
面试题总结
查看>>
【BZOJ1095】捉迷藏(动态点分治)
查看>>
Table Basics [转载]
查看>>