Answers for "How can you add a new item to the end of this list? linkedin"

0

adding an element to the end of a linked list java

class Node {
    Object data;
    Node next;
    Node(Object d,Node n) {
        data = d ;
        next = n ;
       }

   public static Node addLast(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) {
           return new Node(x, null);
       }

       // loop until we find the end of the list
       while ((header.next != null)) {
           header = header.next;
       }

       // set the new node to the Object x, next will be null.
       header.next = new Node(x, null);
       return ret;
   }
}
Posted by: Guest on May-24-2020
0

how to add to end of linked list python

def insert_at_end(self, data):
        new_node = Node(data)
        if self.start_node is None:
            self.start_node = new_node
            return
        n = self.start_node
        while n.ref is not None:
            n= n.ref
        n.ref = new_node;
Posted by: Guest on June-03-2021

Code answers related to "How can you add a new item to the end of this list? linkedin"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language