Si te encuentras con algún detalle que te causa duda nos puedes dejar un comentario y te responderemos rápidamente.
Ejemplo: agregar un elemento al final de una lista enlazada java
classNodeObject data;Node next;Node(Object d,Node n)
data = d ;
next = n ;publicstaticNodeaddLast(Node header,Object x)// save the reference to the header so we can return it.Node ret = header;// check base case, header is null.if(header ==null)returnnewNode(x,null);// loop until we find the end of the listwhile((header.next !=null))
header = header.next;// set the new node to the Object x, next will be null.
header.next =newNode(x,null);return ret;
Comentarios y calificaciones
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)