[1] 1-st-exercize #193

Open
KislyuninED wants to merge 11 commits from KislyuninED/2026-rff_mp:1-st-exercize into develop
Showing only changes of commit b7a6bcc77f - Show all commits

View File

@ -160,7 +160,7 @@ def bst_delete(root, name):
else:
parent['r'] = child
else:
# два ребёнка ищем inorder-преемника
# два ребёнка - ищем inorder-преемника
succ_parent = cur
succ = cur['r']
while succ['l']: