We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
staticSinglyLinkedListNodeinsertNodeAtTail(SinglyLinkedListNodehead,intdata){//create the new nodeif(head==null){SinglyLinkedListNodenode=newSinglyLinkedListNode(data);returnnode;}//if the head.next is null, I will insert the new node thereif(head.next==null)head.next=insertNodeAtTail(head.next,data);//move to the next elseinsertNodeAtTail(head.next,data);returnhead;}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Insert a Node at the Tail of a Linked List
You are viewing a single comment's thread. Return to all comments →
Here a java solution using recursion.