예제 #1
0
 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()
예제 #2
0
 def test_PostOrden_Vacio(self):
     bst = Tree()
     bst.ImprimirPostOrden()