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.
Node*insert(Node*head,intdata){//Complete this functionNode*tmp=head;Node*n=(Node*)malloc(sizeof(Node));n->data=data;n->next=NULL;if(NULL==head){head=n;}else{if(tmp->next==NULL){head->next=n;}else{while(tmp->next!=NULL){tmp=tmp->next;if(tmp->next==NULL){tmp->next=n;break;}}}}returnhead;}
Cookie support is required to access HackerRank
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 →
Using C