LC208—实现 Trie (前缀树)

2023-09-25 16:08:59 浏览数 (1)

208. 实现 Trie (前缀树)

难度中等549

实现一个 Trie (前缀树),包含 insert, search, 和 startsWith 这三个操作。

示例:

代码语言:javascript复制
Trie trie = new Trie();

trie.insert("apple");
trie.search("apple");   // 返回 true
trie.search("app");     // 返回 false
trie.startsWith("app"); // 返回 true
trie.insert("app");   
trie.search("app");     // 返回 true

说明:

代码语言:javascript复制
public class Trie {
   
    private boolean is_string=false;
    private Trie next[]=new Trie[26];

    public Trie(){
   }

    public void insert(String word){
   //插入单词
        Trie root=this;
        char w[]=word.toCharArray();
        for(int i=0;i<w.length;  i){
   
            if(root.next[w[i]-'a']==null)root.next[w[i]-'a']=new Trie();
            root=root.next[w[i]-'a'];
        }
        root.is_string=true;
    }

    public boolean search(String word){
   //查找单词
        Trie root=this;
        char w[]=word.toCharArray();
        for(int i=0;i<w.length;  i){
   
            if(root.next[w[i]-'a']==null)return false;
            root=root.next[w[i]-'a'];
        }
        return root.is_string;
    }
    
    public boolean startsWith(String prefix){
   //查找前缀
        Trie root=this;
        char p[]=prefix.toCharArray();
        for(int i=0;i<p.length;  i){
   
            if(root.next[p[i]-'a']==null)return false;
            root=root.next[p[i]-'a'];
        }
        return true;
    }
}

0 人点赞