实现Trie(前缀树)
题目
实现一个 Trie (前缀树),包含 insert, search, 和 startsWith 这三个操作。
示例:
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
说明:
你可以假设所有的输入都是由小写字母 a-z 构成的。
保证所有输入均为非空字符串。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/implement-trie-prefix-tree
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
思路
代码
代码来说领扣官方还是包装了一层,使用了节点.其实可以不适用节点,就是如下的方式
class Trie {
Trie[] next;
boolean isEnd;
/** Initialize your data structure here. */
public Trie() {
next = new Trie[26];
isEnd = false;
}
/** Inserts a word into the trie. */
public void insert(String word) {
Trie cur = this;
for(char c: word.toCharArray()){
int idx = c - 'a';
if(cur.next[idx] == null){
cur.next[idx] = new Trie();
}
cur = cur.next[idx];
}
cur.isEnd = true;
}
/** Returns if the word is in the trie. */
public boolean search(String word) {
Trie cur = this;
for(char c: word.toCharArray()){
int idx = c - 'a';
if(cur.next[idx] == null){
return false;
}
cur = cur.next[idx];
}
return cur.isEnd;
}
/** Returns if there is any word in the trie that starts with the given prefix. */
public boolean startsWith(String prefix) {
Trie cur = this;
for(char c: prefix.toCharArray()){
int index = c - 'a';
if(cur.next[index] == null){
return false;
}
cur = cur.next[index];
}
return true;
}
}
/**
* Your Trie object will be instantiated and called as such:
* Trie obj = new Trie();
* obj.insert(word);
* boolean param_2 = obj.search(word);
* boolean param_3 = obj.startsWith(prefix);
*/
网友评论