public void Listar() {
   Nodo q;
   for (q = h; q != null; q = q.GetLigaDer()) System.out.println(q.GetInfo());
 }