Luego de mirar en diferentes repositorios y sitios webs finalmente hemos descubierto la respuesta que te compartiremos a continuación.
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;
Si haces scroll puedes encontrar los informes de otros gestores de proyectos, tú asimismo eres capaz dejar el tuyo si lo crees conveniente.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)