public void Inserir(IDado d) { Nodo novo = new Nodo(d); this.raiz = Inserir(novo, this.raiz); }
public ABB() { this.raiz = null; }