public Nodo() { this.valor = 0; this.izq = null; this.der = null; }
public ArbolBinario() { raiz = null; }