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