Beispiel #1
0
 public Nodo(Object x, Nodo n)
 {
     dato   = x;
     enlace = n;
 }
Beispiel #2
0
 public void setEnlace(Nodo enlace)
 {
     this.enlace = enlace;
 }
Beispiel #3
0
 public Nodo(object x)
 {
     this.dato   = x;
     this.enlace = null;
 }