public Lista() { this.primeiro = new Elemento(null); this.ultimo = this.primeiro; }
public Elemento(Dados d) { this.d = d; this.prox = null; }