A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

本帖最后由 jojo 于 2015-1-10 16:02 编辑

1.1、什么是Trie树
    Trie树,即字典树,又称单词查找树或键树,是一种树形结构,是一种哈希树的变种。典型应用是用于统计和排序大量的字符串(但不仅限于字符串),所以经常被搜索引擎系统用于文本词频统计。它的优点是:最大限度地减少无谓的字符串比较,查询效率比哈希表高。
    Trie的核心思想是空间换时间。利用字符串的公共前缀来降低查询时间的开销以达到提高效率的目的。

它有3个基本性质:


  • 根节点不包含字符,除根节点外每一个节点都只包含一个字符。
  • 从根节点到某一节点,路径上经过的字符连接起来,为该节点对应的字符串。
  • 每个节点的所有子节点包含的字符都不相同。
1.2、树的构建举个在网上流传颇广的例子,如下:
    题目:给你100000个长度不超过10的单词。对于每一个单词,我们要判断他出没出现过,如果出现了,求第一次出现在第几个位置。
    分析:这题当然可以用hash来解决,但是本文重点介绍的是trie树,因为在某些方面它的用途更大。比如说对于某一个单词,我们要询问它的前缀是否出现过。这样hash就不好搞了,而用trie还是很简单。
    现在回到例子中,如果我们用最傻的方法,对于每一个单词,我们都要去查找它前面的单词中是否有它。那么这个算法的复杂度就是O(n^2)。显然对于100000的范围难以接受。现在我们换个思路想。假设我要查询的单词是abcd,那么在他前面的单词中,以b,c,d,f之类开头的我显然不必考虑。而只要找以a开头的中是否存在abcd就可以了。同样的,在以a开头中的单词中,我们只要考虑以b作为第二个字母的,一次次缩小范围和提高针对性,这样一个树的模型就渐渐清晰了。
    好比假设有b,abc,abd,bcd,abcd,efg,hii 这6个单词,我们构建的树就是如下图这样的:


  当时第一次看到这幅图的时候,便立马感到此树之不凡构造了。单单从上幅图便可窥知一二,好比大海搜人,立马就能确定东南西北中的到底哪个方位,如此迅速缩小查找的范围和提高查找的针对性,不失为一创举。
    ok,如上图所示,对于每一个节点,从根遍历到他的过程就是一个单词,如果这个节点被标记为色,就表示这个单词存在,否则不存在。
    那么,对于一个单词,我只要顺着他从根走到对应的节点,再看这个节点是否被标记为红色就可以知道它是否出现过了。把这个节点标记为红色,就相当于插入了这个单词。
    这样一来我们查询和插入可以一起完成(重点体会这个查询和插入是如何一起完成的,稍后,下文具体解释),所用时间仅仅为单词长度,在这一个样例,便是10。
    我们可以看到,trie树每一层的节点数是26^i级别的。所以为了节省空间。我们用动态链表,或者用数组来模拟动态。空间的花费,不会超过单词数×单词长度。


1.3、Trie树java实例

  1. <P> </P>
  2. <DIV class=blockcode>
  3. <BLOCKQUOTE>import java.util.ArrayList;
  4. import java.util.Iterator;
  5. import java.util.List;


  6. /**
  7. * A word trie which can only deal with 26 alphabeta letters.
  8. */

  9. public class Trie{

  10. private Vertex root;//一个Trie树有一个根节点

  11. //内部类
  12. protected class Vertex{//节点类
  13. protected int words;
  14. protected int prefixes;
  15. protected Vertex[] edges;//每个节点包含26个子节点(类型为自身)
  16. Vertex() {
  17. words = 0;
  18. prefixes = 0;
  19. edges = new Vertex[26];
  20. for (int i = 0; i < edges.length; i++) {
  21. edges[i] = null;
  22. }
  23. }
  24. }

  25. public Trie () {
  26. root = new Vertex();
  27. }


  28. /** *//**
  29. * List all words in the Trie.
  30. * @return
  31. */

  32. public List< String> listAllWords() {

  33. List< String> words = new ArrayList< String>();
  34. Vertex[] edges = root.edges;

  35. for (int i = 0; i < edges.length; i++) {
  36. if (edges[i] != null) {
  37. String word = "" + (char)('a' + i);
  38. depthFirstSearchWords(words, edges[i], word);
  39. }
  40. }
  41. return words;
  42. }

  43. /** *//**
  44. * Depth First Search words in the Trie and add them to the List.
  45. *
  46. * @param words
  47. * @param vertex
  48. * @param wordSegment
  49. */

  50. private void depthFirstSearchWords(List words, Vertex vertex, String wordSegment) {
  51. Vertex[] edges = vertex.edges;
  52. boolean hasChildren = false;
  53. for (int i = 0; i < edges.length; i++) {
  54. if (edges[i] != null) {
  55. hasChildren = true;
  56. String newWord = wordSegment + (char)('a' + i);
  57. depthFirstSearchWords(words, edges[i], newWord);
  58. }
  59. }
  60. if (!hasChildren) {
  61. words.add(wordSegment);
  62. }
  63. }

  64. public int countPrefixes(String prefix) {
  65. return countPrefixes(root, prefix);
  66. }

  67. private int countPrefixes(Vertex vertex, String prefixSegment) {
  68. if (prefixSegment.length() == 0) { //reach the last character of the word
  69. return vertex.prefixes;
  70. }

  71. char c = prefixSegment.charAt(0);
  72. int index = c - 'a';
  73. if (vertex.edges[index] == null) { // the word does NOT exist
  74. return 0;
  75. } else {

  76. return countPrefixes(vertex.edges[index], prefixSegment.substring(1));

  77. }

  78. }

  79. public int countWords(String word) {
  80. return countWords(root, word);
  81. }

  82. private int countWords(Vertex vertex, String wordSegment) {
  83. if (wordSegment.length() == 0) { //reach the last character of the word
  84. return vertex.words;
  85. }

  86. char c = wordSegment.charAt(0);
  87. int index = c - 'a';
  88. if (vertex.edges[index] == null) { // the word does NOT exist
  89. return 0;
  90. } else {
  91. return countWords(vertex.edges[index], wordSegment.substring(1));

  92. }

  93. }


  94. /** *//**
  95. * Add a word to the Trie.
  96. * @param word The word to be added.
  97. */

  98. public void addWord(String word) {
  99. addWord(root, word);
  100. }


  101. /** *//**
  102. * Add the word from the specified vertex.
  103. * @param vertex The specified vertex.
  104. * @param word The word to be added.
  105. */

  106. private void addWord(Vertex vertex, String word) {
  107. if (word.length() == 0) { //if all characters of the word has been added
  108. vertex.words ++;
  109. } else {
  110. vertex.prefixes ++;
  111. char c = word.charAt(0);
  112. c = Character.toLowerCase(c);
  113. int index = c - 'a';
  114. if (vertex.edges[index] == null) { //if the edge does NOT exist
  115. vertex.edges[index] = new Vertex();
  116. }

  117. addWord(vertex.edges[index], word.substring(1)); //go the the next character
  118. }
  119. }

  120. public static void main(String args[]) //Just used for test
  121. {
  122. Trie trie = new Trie();
  123. trie.addWord("China");
  124. trie.addWord("China");
  125. trie.addWord("China");

  126. trie.addWord("crawl");
  127. trie.addWord("crime");
  128. trie.addWord("ban");
  129. trie.addWord("China");

  130. trie.addWord("english");
  131. trie.addWord("establish");
  132. trie.addWord("eat");
  133. System.out.println(trie.root.prefixes);
  134. System.out.println(trie.root.words);



  135. List< String> list = trie.listAllWords();
  136. Iterator listiterator = list.listIterator();

  137. while(listiterator.hasNext())
  138. {
  139. String s = (String)listiterator.next();
  140. System.out.println(s);
  141. }


  142. int count = trie.countPrefixes("ch");
  143. int count1=trie.countWords("china");
  144. System.out.println("the count of c prefixes:"+count);
  145. System.out.println("the count of china countWords:"+count1);


  146. }
  147. }
复制代码



2 个回复

倒序浏览
挺抽象的。。
回复 使用道具 举报

其实还好啦,理解下他的结构和作用可以了。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马