Linked List In-Place Reverse Challenge
This challenge, similar to the last linked list challenge, involves reversing
a singly linked list--but this time, you must not out the list but actually
reverse the entire list in place. By in-place, I mean that no memory can be
allocated. The resulting code should be function that takes the head of a
list and returns a the new head of the reversed list.
View Solution