//Implement Trie (Prefix Tree)
//Implement a trie with insert, search, and startsWith methods.
//You may assume that all inputs are consist of lowercase letters a-z.
class MYTrieNode {
char val;
boolean isWord;
MYTrieNode[] subNodes = new MYTrieNode[26];
MYTrieNode(char val) {
this.val = val;
}
}
class Trie {
private MYTrieNode root;
/** Initialize your data structure here. */
public Trie() {
root = new MYTrieNode(' ');
}
/** Inserts a word into the trie. */
public void insert(String word) {
MYTrieNode node = root;
for (int i = 0; i < word.length(); i++) {
if (node.subNodes[word.charAt(i) - 'a'] != null) {
node = node.subNodes[word.charAt(i) - 'a'] ;
} else {
node.subNodes[word.charAt(i) - 'a'] = new MYTrieNode(word.charAt(i));
node = node.subNodes[word.charAt(i) - 'a'];
}
}
node.isWord = true;
}
/** Returns if the word is in the trie. */
public boolean search(String word) {
MYTrieNode node = root;
for (int i = 0; i < word.length(); i++) {
if (node.subNodes[word.charAt(i) - 'a'] != null) {
node = node.subNodes[word.charAt(i) - 'a'] ;
} else {
return false;
}
}
return node.isWord;
}
/** Returns if there is any word in the trie that starts with the given prefix. */
public boolean startsWith(String prefix) {
MYTrieNode node = root;
for (int i = 0; i < prefix.length(); i++) {
if (node.subNodes[prefix.charAt(i) - 'a'] != null) {
node = node.subNodes[prefix.charAt(i) - 'a'] ;
} else {
return false;
}
}
return true;
}
}
实现前缀树(增、判断是否有该单词,是否有该前缀)
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
推荐阅读更多精彩内容
- 成长记录-连载(三十六) ——我的第一篇五千字长文,说了什么,你一定想不到 并不是不想每天写公众号,而是之前思考怎...
- 20+个很棒的Android开源项目本文摘自文章: 20+ Awesome Open-Source Android...
