public string pop() { Elemento aux = this.topo.Prox; if (aux != null) { this.topo.Prox = aux.Prox; aux.Prox = null; if (aux == this.fundo) { this.fundo = this.topo; } return(aux.GetDado()); } else { return(null); } }
//private int contElementos; //1)a public Lista() { this.primeiro = new Elemento(); this.ultimo = this.primeiro; }
public Pilha() { this.topo = new Elemento(null); this.fundo = this.topo; }