Skip to main content

All Questions

0 votes
1 answer
84 views

Recursive function to reverse linked list(Code Snippet Explanation) [closed]

Can someone please explain the code below: void reverseList(node **href){ node *first; node *rest; if(*href == NULL){ return; } first = *href; rest = first->next; ...
Akshay Parashar's user avatar