You are viewing a single comment's thread. Return to all comments →
public static Node insert(Node head,int data) {
if(head==null){ head = new Node(data); } else{ Node start = head; while(start.next != null){ start = start.next; } Node newNode = new Node(data); start.next = newNode; } return head; }
Seems like cookies are disabled on this browser, please enable them to open this website
Day 15: Linked List
You are viewing a single comment's thread. Return to all comments →
Simple JAVA approach
public static Node insert(Node head,int data) {