码迷,mamicode.com
首页 > 其他好文 > 详细

Trie树

时间:2020-02-07 12:49:56      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:com   insert   nta   http   引擎   with   root   new   returns   

字典树,即Trie树,又称单词查找树或键树,是一种树形结构。典型应用是用于统计和排序大量的字符串(但不仅限于字符串),所以经常被搜索引擎系统用于文本词频统计。它的优点是:最大限度地减少无谓的字符串比较,查询效率比哈希表高。

技术图片

//leetcode submit region begin(Prohibit modification and deletion)
class Trie {
    TrieNode root;
    /** Initialize your data structure here. */
    public Trie() {
        root = new TrieNode();
    }
    
    /** Inserts a word into the trie. */
    public void insert(String word) {
        TrieNode cur =root;
        char c;
        for(int i = 0;i<word.length();i++){
            c =word.charAt(i);
            if(cur.get(c)!=null){
                cur= cur.get(c);
            }else {
                cur.put(c,new TrieNode());
                cur= cur.get(c);
            }
        }
        cur.setEnd();
    }
    
    /** Returns if the word is in the trie. */
    public boolean search(String word) {
        TrieNode cur = root;
        char c;
        for(int i=0;i<word.length();i++){
            c = word.charAt(i);
            if(cur.get(c)==null)
                return false;
            cur=cur.get(c);
        }
         return  cur.isEnd==true?true:false;
    }
    
    /** Returns if there is any word in the trie that starts with the given prefix. */
    public boolean startsWith(String prefix) {
        TrieNode cur = root;
        char c;
        for(int i=0;i<prefix.length();i++){
            c = prefix.charAt(i);
            if(cur.get(c)==null)
                return false;
            cur=cur.get(c);
        }
        return true;
    }
}
class TrieNode{

    Map <Character, TrieNode> nextTreeNode;
    boolean isEnd;

    public TrieNode(){
        nextTreeNode = new HashMap<>();
        isEnd = false;
    }

    public boolean containsKey(char c){
        return  nextTreeNode.containsKey(c);
    }

    public TrieNode get(char c){
        return  nextTreeNode.get(c);
    }

    public void put(char c,TrieNode node){
        nextTreeNode.put(c,node);
    }

    public boolean isEnd(){
        return  isEnd;
    }

    public void setEnd(){
        isEnd = true;
    }
}

 

Trie树

标签:com   insert   nta   http   引擎   with   root   new   returns   

原文地址:https://www.cnblogs.com/jiazhiyuan/p/12269959.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!