示例#1
0
 /**
  * Create an empty trie with an empty root node.
  */
 public Trie()
 {
     this.root    = new TrieNode <V>(null, '\0');
     this.Matcher = new PrefixMatcher <V>(this.root);
 }