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.
Java Solution
we want to insert the node head of the sll(sll Node,int data)
{
sll new head= new sllNode(data);
if(list!=NULL)
{
Node.next=list
return new head
}
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 head of a linked list
You are viewing a single comment's thread. Return to all comments →
Java Solution we want to insert the node head of the sll(sll Node,int data) { sll new head= new sllNode(data); if(list!=NULL) { Node.next=list return new head }