Ejemplo n.º 1
0
 public ColeccionMultiple(Pila p, Cola c)
 {
     this.pila = p;
     this.cola = c;
 }
Ejemplo n.º 2
0
 public ColeccionMultiple()
 {
     pila = new Pila();
     cola = new Cola();
 }
Ejemplo n.º 3
0
 public IteradorDeCola(Iterable cola)
 {
     this.cola   = (Cola)cola;
     this.indice = 0;
 }