You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AIM : Given pointer to the head node of a linked list, the task is to reverse the linked list.
Input: Head of following linked list
1->2->3->4->NULL
Output: Linked list should be changed to,
4->3->2->1->NULL
The text was updated successfully, but these errors were encountered:
AIM : Given pointer to the head node of a linked list, the task is to reverse the linked list.
Input: Head of following linked list
1->2->3->4->NULL
Output: Linked list should be changed to,
4->3->2->1->NULL
The text was updated successfully, but these errors were encountered: