DEV Community

akbhairwal
akbhairwal

Posted on

6-10PM challenge problem #004

Reverse Linked List

Example:

Input: 1->2->7->4->5->NULL
Output: 5->4->7->2->1->NULL
Follow up:

A linked list can be reversed either iteratively or recursively. Could you implement both?

Top comments (0)