188
правок
Изменения
м
→Рекурсивная реализация
'''else if''' root.left != ''null'' '''and''' root.right != ''null''
root.key = minimum(root.right).key
root.right = delete(root, root.right.key)
'''else'''
'''if''' root.left != ''null''