题目:
实现一个 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 构成的。
保证所有输入均为非空字符串。
题解:
import java.util.*;
class TrieNode{
TrieNode[] child;//记录孩子节点
boolean is_end;//记录当前节点是不是一个单词的结束字母
public TrieNode(){//
child = new TrieNode[26];//子节点数组长度26,0:‘a’,1:‘b’.....
is_end = false;
}
}
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 ptr = root;//从根出发
for(int i = 0;i < word.length();i++){
char c = word.charAt(i);//对于每个单词
if(ptr.child[c - 'a'] == null){//如果c - 'a'为空,说明还没有存入
ptr.child[c - 'a'] = new TrieNode();//存入节点
}
ptr = ptr.child[c - 'a'];//指向当前节点
}
ptr.is_end = true;//最后的节点为单词的最后一个单词,is_end设置为true
}
/** Returns if the word is in the trie. */
public boolean search(String word) {
TrieNode ptr = root;//从根出发
for(int i = 0;i < word.length();i++){
char c = word.charAt(i);//对于每个字母
if(ptr.child[c - 'a'] == null){//如果不存在于前缀树中,返回false
return false;
}
ptr = ptr.child[c - 'a'];
}
return ptr.is_end;//如果所有字符都在前缀树中,那么判断最后一个字母结束标志是否为true,
// 为true,返回true,说明单词找到,否则,false,没找到
}
/** Returns if there is any word in the trie that starts with the given prefix. */
public boolean startsWith(String prefix) {
TrieNode ptr = root;//从根出发
for(int i = 0;i < prefix.length();i++){
char c = prefix.charAt(i);//对于每个字母
if(ptr.child[c - 'a'] == null){//如果不存在于前缀树中,返回false
return false;
}
ptr = ptr.child[c - 'a'];
}
return true;
}
}
public class Main {
public static void main(String[] args) {
Trie trie = new Trie();
trie.insert("apple");
boolean res1 = trie.search("apple"); // 返回 true
boolean res2 = trie.search("app"); // 返回 false
boolean res3 = trie.startsWith("app"); // 返回 true
trie.insert("app");
boolean res4 = trie.search("app"); // 返回 true
System.out.println(res1 + " " + res2 + " " + res3 + " " + res4);
}
}