def test_Eliminar_HijoDer(self): bst = Tree() bst.Insertar(21) bst.Insertar(45) bst.Insertar(32) bst.Insertar(91) bst.Eliminar(45)
def test_Eliminar_Nulo(self): bst = Tree() bst.Insertar(21) bst.Insertar(13) bst.Insertar(10) bst.Insertar(33) bst.Insertar(18) bst.Eliminar(45)
def test_Eliminar_HijoIzq(self): bst = Tree() bst.Insertar(21) bst.Insertar(13) bst.Insertar(10) bst.Insertar(33) bst.Insertar(18) bst.Insertar(25) bst.Insertar(40) bst.Eliminar(13)
def test_Eliminar_Vacio(self): bst = Tree() bst.Eliminar(21)
def test_Eliminar_Der(self): bst = Tree() bst.Insertar(21) bst.Insertar(53) bst.Eliminar(21)
def test_Eliminar_Izq(self): bst = Tree() bst.Insertar(21) bst.Insertar(19) bst.Eliminar(21)
def test_Eliminar_Raiz(self): bst = Tree() bst.Insertar(21) bst.Eliminar(21)