def test_Max(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.BuscarMax(bst.raiz)
def test_Max_Vacio(self): bst = Tree() bst.BuscarMax(bst.raiz)