如果从远处看,从树中删除节点非常复杂。删除节点时需要考虑3种情况。这些在以下功能的注释中提到。正如我们之前所做的那样,我们将在类中创建一个方法和一个递归调用的助手。
deleteNode(key) { //如果成功删除节点,将收到参考。 return !(deleteNodeHelper(this.root, key) === false); }
/** * Takes root and key and recursively searches for the key. * If it finds the key, there could be 3 cases: * * 1. This node is a leaf node. * * Example: Removing F * A * / \ * B C * / / \ * D E F * * To remove it, we can simply remove its parent's connection to it. * * A * / \ * B C * / / * D E * * 2. This node is in between the tree somewhere with one child. * * Example: Removing B * A * / \ * B C * / / \ * D E F * * To remove it, we can simply make the child node replace the parent node in the above connection * A * / \ * D C * / \ * E F * * 3. This node has both children. This is a tricky case. * * Example: Removing C * * A * / \ * B C * / / \ * D E F * / / \ * G H I * * In this case, we need to find either a successor or a predecessor of the node and replace this node with * that. For example, If we go with the successor, its successor will be the element just greater than it, * ie, the min element in the right subtree. So after deletion, the tree would look like: * * A * / \ * B H * / / \ * D E F * / \ * G I * * To remove this element, we need to find the parent of the successor, break their link, make successor's left * and right point to current node's left and right. The easier way is to just replace the data from node to be * deleted with successor and delete the sucessor. */ function deleteNodeHelper(root, key) { if (root === null) { //空树返回false; } if (key < root.data) { root.left = deleteNodeHelper(root.left, key); return root; } else if (key > root.data) { root.right = deleteNodeHelper(root.right, key); return root; } else { //没有孩子 //情况1-叶子节点 if (root.left === null && root.right === null) { root = null; return root; } //独生子女案件 if (root.left === null) return root.right; if (root.right === null) return root.left; //两个孩子,所以需要找到继任者 let currNode = root.right; while (currNode.left !== null) { currNode = currNode.left; } root.data = currNode.data; //从右子树中删除该值。 root.right = deleteNodeHelper(root.right, currNode.data); return root; } }
您可以使用以下方式进行测试:
let BST = new BinarySearchTree(); BST.insertRec(10); BST.insertRec(15); BST.insertRec(5); BST.insertRec(50); BST.insertRec(3); BST.insertRec(7); BST.insertRec(12); BST.inOrder(); BST.deleteNode(15); BST.deleteNode(10); BST.deleteNode(3); BST.inOrder();
输出结果
这将给出输出-
5 7 12 50
我现在正在读一本关于从二叉搜索树中删除节点的书,书中描述的过程对我来说似乎不必要地复杂。 在1号情况下,如果我们删除40,它将替换为30;在 2 号情况下,如果我们删除 40,它将被替换 35。 但在书中,它说应该从要删除的节点的右子树中找到替换,这可能涉及一些复杂的操作。 我在这里遗漏了什么吗?请指出。
我正在阅读一本书,该书解释了如何从二元搜索树中删除节点,基本上如果我们有这棵树: 我们想删除节点4,书上说我应该: 在其右子树(即6)中找到4的继任者 交换4和6 从右子树中删除6 将4的左侧子树(在本例中仅为1)附加到新节点6 因此我们得到 然而,我想到了另一种方法来做到这一点: 找到4个右子树的最小元素(即6) 将4的左子树附加到6(它不会有左子树) 将父元素(10)附加到4的右侧元素(8)。
本文向大家介绍Javascript removeChild()删除节点及删除子节点的方法,包括了Javascript removeChild()删除节点及删除子节点的方法的使用技巧和注意事项,需要的朋友参考一下 下面给大家介绍Javascript removeChild()删除节点的方法,具体详情如下所示: 在Javascript中,只提供了一种删除节点的方法:removeChild()。 rem
主要内容:src/runoob/binary/BSTRemove.java 文件代码:本小节介绍二分搜索树节点的删除之前,先介绍如何查找最小值和最大值,以及删除最小值和最大值。 以最小值为例(最大值同理): 查找最小 key 值代码逻辑,往左子节点递归查找下去: ... // 返回以node为根的二分搜索树的最小键值所在的节点 private Node minimum (Node node ) { if ( node. left == null ) retu
我的删除方法由4个if语句组成,用于处理二叉查找树中的4种不同类型的删除。不确定哪里错了,但当我检查它时,它没有删除任何节点。如果赞赏,任何帮助。提前感谢' 我怀疑问题在于我试图将节点删除替换为空 }
我目前正在做一个学校项目,我必须为二叉搜索树编写一些辅助函数。其中一个函数从树中删除了一个节点。我正在尝试运行一些测试用例,但似乎无法让它们正常工作。我知道这个问题与我如何使用指针有关,但我不太确定我哪里出错了。 这是代码: 注意:我没有包括leftRoot()函数,但它相当简单,我知道它做了它应该做的事情(返回子树中最左边的根)下面是我的教授给我们的测试remove函数的代码部分: 如果有必要,