Exemple #1
0
 public Arbol(Nodo raiz)
 {
     this.raiz = raiz;
 }
Exemple #2
0
 public Arbol()
 {
     raiz = null;
 }