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?
We're a place where coders share, stay up-to-date and grow their careers.
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?
sam -
Saeed Ahmad -
elisabethgross -
elisabethgross -
Discussion