mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-04-05 13:26:43 +00:00
improved del_node func(13)
This commit is contained in:
parent
4fc0c00b90
commit
9218a96cc7
@ -227,8 +227,8 @@ def del_node(root: MyNode | None, data: Any) -> MyNode | None:
|
||||
right_child = root.get_right()
|
||||
assert right_child is not None
|
||||
temp = get_min_value_node(right_child)
|
||||
|
||||
root.set_data(temp.get_data())
|
||||
if temp is not None:
|
||||
root.set_data(temp.get_data())
|
||||
root.set_right(del_node(root.get_right(), temp.get_data()))
|
||||
|
||||
root.set_height(
|
||||
@ -370,4 +370,4 @@ if __name__ == "__main__":
|
||||
random.shuffle(lst)
|
||||
for i in lst:
|
||||
t.del_node(i)
|
||||
print(str(t))
|
||||
print(str(t))
|
Loading…
x
Reference in New Issue
Block a user