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?
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?
For further actions, you may consider blocking this person and/or reporting abuse
lifewithcode -
Pedro Soares -
realNameHidden -
Prashant Mishra -
Top comments (0)