二分木に格納された文字列を検索するために何をする必要があるかわかりません。検索メソッドを書いていますが、何を渡せばよいのかよくわかりません。ツリーに追加する前に文字列を検索する必要があります。見つかった場合は、新しいカウンターを追加するのではなく、ノード オブジェクト内のカウンターを増やすだけです。ちなみにツリーは未分類です。
私の質問は、追加する前にどのように検索するのですか?
System.out.println("Enter string to be stored");
stringValue = k.nextLine();
if (theString.isEmpty() == true) {
node.add(stringValue, count);
} else {
// I am not sure what to do here
// How do I send the string to my search method?
stringValue.treeSearch();
}
public Node treeSearch(String s, TreeNode root){
if(root.toString().equals(s)){
return root;
}
if(left != null){
left.treeSearch(s, root.left);
if(root.toString().equals(s)){
return root;
}
}
if(right != null){
right.treeSearch(s, root.right);
if(root.toString().equals(s)){
return root;
}
}else{
return null;
}
}
検索方法をこれに更新します。
public Node treeSearch(String s, Node root){
if(root.toString().equals(s)){
return root;
}
if(left != null){
left.treeSearch(s, root.left);
return root;
}
if(right != null){
right.treeSearch(s, root.right);
return root;
}else{
return null;
}
}