Exemple #1
0
 private void addLeft(T dato) {
   Nodo t = raiz;
   Nodo q = new Nodo<>(dato);
   t.setLigaDer(q);
 }