我的节点类:
static class Trie{
int count;
Trie[] words;
public Trie(){
count =-1;
for(int i=0;i<26;i++)
words[i] = null;
}
}
创建新节点的代码行:
if(Root==null)
Root = new Trie();
我收到以下错误
Exception in thread "main" java.lang.NullPointerException
我做错了什么,如何创建新对象
答案 0 :(得分:1)
你从未初步化过单词:
words = new Trie[26];