Exemplo n.º 1
0
 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)
Exemplo n.º 2
0
 def test_Max_Vacio(self):
     bst = Tree()
     bst.BuscarMax(bst.raiz)