以下是代码。数组索引表示小字符(a-z),索引是26(英文字母表中的字符数)。它是一个单词词典,其中子项[character ascii value-97]指向下一个节点。单词的结尾给出bool terminal = true。
所有函数都是递归的。在删除函数中,我们必须逐字遍历单词的结尾。遍历时,在第二次递归删除调用中,我丢失了所有引用并发生了NullPointerException
。
出现问题的代码行在其前面有一个注释。首先检查词典中是否存在单词。
import java.io.File;
import java.util.Scanner;
public class xxx {
public static void main(String[] args) {
Trie trie = new Trie();
if (trie.delete(word)) {
System.out.println("Word deleted");
} else {
System.out.println("Word not present");
}
break;
}
case "S": { //Search for the word
String word = tokens[1];
if (trie.isPresent(word)) {
System.out.println("Word found");
} else {
System.out.println("Word not found");
}
}
该类只调用Node类的递归函数。 trie类从主类获取调用,然后将数据移动到Node类
中的递归函数class Trie {
Node root;
public Trie() {
root = new Node();
}
boolean isPresent(String s) { // returns true if s is present, false otherwise
current = root;
for (int i = 0; i < s.length(); i++) {
if (current.children[(int) s.charAt(i) - 97] == null) {
return false;
} else {
current = current.children[(int) s.charAt(i) - 97];
}
}
if (current.terminal == false) {
return false;
}
return true;
}
boolean delete(String s) { // returns false if s is not present, true otherwise
if (!isPresent(s)) {
return false;
}
root.delete(root,s);
return true;
}
int membership() { // returns the number of words in the data structure
return root.membership(root, 0);
}
void listAll() { // list all members of the Trie in alphabetical orber
root.listAll(root, "");
}
}
子项[ascii value-97]将引用一个节点,此链接将表示字母字符。 outDegree将确保只删除给定的字符串。这个类有所有递归函数。
class Node {
boolean terminal;
int outDegree;
Node[] children;
public Node() {
terminal = false;
outDegree = 0;
children = new Node[26];
}
public void delete(Node x, String s) {
if (s.length() > 1){
if(i<s.length())
delete(children[s.charAt(0)-97],s.substring(1)); //this is where problem occurs
}
else if(children[((int)s.charAt(0))-97].outDegree>0)
terminal =false;
else if(children[((int)s.charAt(0))-97].outDegree==0){
children[((int)s.charAt(0))-97]=null;
return;
}
if(children[s.charAt(0)-97].outDegree==0)
children[s.charAt(0)-97]=null;
}
}
答案 0 :(得分:0)
您的问题不在您评论的代码行中。您的问题是如何初始化数组:
children = new Node[26];
这行代码分配数组的内存。但是,对于对象引用,数组的每个单独元素的值设置为NULL,char
基元的unicode NULL字符,false
基元的boolean
和0
设置为{{1}}对于数字原语。如果要使其正常工作,则必须正确初始化数组。