def test_PreOrden(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.ImprimirPreOrden()
def test_PreOrden_Vacio(self): bst = Tree() bst.ImprimirPreOrden()