def test_PostOrden(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.ImprimirPostOrden()
def test_PostOrden_Vacio(self): bst = Tree() bst.ImprimirPostOrden()