-
-
Notifications
You must be signed in to change notification settings - Fork 809
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
关于bst删除节点时的两个疑问 #9
Comments
你可以给 Bst 加上个中序遍历的方法: def inorder_trav(self, subtree):
if subtree is not None:
self.inorder_trav(subtree.left)
print(subtree.key)
self.inorder_trav(subtree.right) 然后直接测试: def test_bst_tree():
bst = BST.build_from(NODE_LIST)
for node_dict in NODE_LIST:
key = node_dict['key']
assert bst.get(key) == key
assert bst.size == len(NODE_LIST)
assert bst.get(-1) is None # 单例的 None 我们用 is 来比较
assert bst.bst_min() == 1
bst.remove(29) # 直接删除一个包含两个孩子的内部节点
print('\n')
bst.inorder_trav(bst.root)
print('\n') 你会看到赋值和不赋值之间的差别。 |
感谢大佬 两个问题都已想明白了 |
好,如果解答了你的疑问这个 issue 我就 close 了 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
请教两个问题,谢谢
一、 “删除只有一个孩子的节点时,只要把它的父亲指向它的孩子”,这里貌似有问题,例如:
root的key为60,左孩子为10,右孩子为70,然后70的左孩子为30
若删除70这个节点,则按上述规则30将会成为60的右孩子,不符合bst特性
二、 删除两个孩子的节点时,代码是这么写的:
successor_node = self._bst_min_node(subtree.right)
subtree.key, subtree.value = successor_node.key, successor_node.value
subtree.right = self._bst_remove(subtree.right, successor_node.key)
既然是互换了两个节点,为什么要最后一行给互换后节点的右孩子再去赋值?是否直接self._bst_remove(subtree.right, successor_node.key)就可以了?
The text was updated successfully, but these errors were encountered: