public Cnodo(int dato) { this.Dato = dato; hijo = null; hermano = null; }
public CArbol(int dato) { Raiz = new Cnodo(dato); }