Я использую связанный узел для представления BST.
Я могу найти узел без детей, но метод удаления для этого узла не работает:
После того, как я добавлю один узел со значением "cat", у моего BST будет только один узел без дочерних элементов.
Я попытался удалить узел "cat", но обнаружил, что метод удаления не работает - узел "cat" все еще находится в BST.
Кто-нибудь знает, как решить эту проблему? Спасибо
public class BinarySearchTree {
Node root;
public BinarySearchTree() {
root = null;
}
/*
* Adds the specified node to the BST
*/
public String add(String value) {
if (root == null) {
root = new Node(value);
return value;
}
return add(root, value);
}
public String add(Node root, String value) {
int comparision = value.compareTo(root.data);
if (comparision < 0) {
if (root.left != null)
return add(root.left, value);
root.left = new Node(value);
return value;
}
if (comparision > 0) {
if (root.right != null)
return add(root.right, value);
root.right = new Node(value);
return value;
}
return value;// not allow duplicate
}
/*
* Returns true if the string is found in the BST
*/
public boolean contains(String value) {
return contains(root, value);
}
private boolean contains(Node root, String value) {
if (root == null) {
return false;
}
int comparison = value.compareTo(root.data);
if (comparison == 0) {
return true;
}
if (comparison < 0) {
return contains(root.left, value);
} else {
return contains(root.right, value);
}
}
/*
* Checks whether the tree is empty or not
*/
public boolean isEmpty() {
return root == null;
}
/*
* Removes the specified string from the BST
*/
public boolean remove(String s) {
if (contains(s) == false) {
return false;
}
return remove(root, s);
}
public boolean remove(Node root, String s) {
if (root == null) {
return false;
}
int comparision = s.compareTo(root.data);
if (comparision == 0) {
if (root.left == null && root.right == null) {
System.out.println("----------------------------------");
root = null;
return true;
} else if (root.left != null && root.right != null) {
Node temp = root;
String min = minValue(temp.right).data;
root.data = min;
removemin(root.right);
return true;
}
}
if (comparision < 0) {
if (root.left.data.equals(s)) {
if (root.left.left == null || root.left.right == null) {
root.left = root.left.right;
return true;
}
}
return remove(root.left, s);
}
if (comparision > 0) {
if (root.right.data.equals(s)) {
if (root.right.right == null || root.right.left == null) {
root.right = root.right.left;
return true;
}
}
return remove(root.right, s);
}
return false;
}
public Node minValue(Node root) {
if (root.left == null) {
return root;
} else
return minValue(root.left);
}
public static void removemin(Node root) {
if (root.left == null) {
root = null;
} else
removemin(root.left);
}
/**
* Prints the inorder traversal of this tree
*/
public void inorderTraversal() {
inorderTraversal(root);
}
private void inorderTraversal(Node root) {
if (root == null)
return;
inorderTraversal(root.left);
System.out.print(root.data + " ");
inorderTraversal(root.right);
}
private class Node {
String data;
Node left;
Node right;
public Node(String data) {
this.data = data;
}
}
/*
* Returns the height of the tree
*/
public int getHeight() {
return getHeight(root);
}
private int getHeight(Node root) {
if (root == null)
return 0;
return 1 + Math.max(getHeight(root.left), getHeight(root.right));
}