public ColeccionMultiple(Pila p, Cola c) { this.pila = p; this.cola = c; }
public ColeccionMultiple() { pila = new Pila(); cola = new Cola(); }
public IteradorDePila(Iterable pila) { this.pila = (Pila)pila; this.indice = 0; }