Skip to content

Instantly share code, notes, and snippets.

@kylemeow
Created December 9, 2015 05:32
Show Gist options
  • Save kylemeow/0be3427abca656ce755d to your computer and use it in GitHub Desktop.
Save kylemeow/0be3427abca656ce755d to your computer and use it in GitHub Desktop.
Reverse Linked List
class Solution {
public:
ListNode* reverseList(ListNode* head) {
ListNode *newHead = NULL; // Head of the reversed list
ListNode *tmpNode = NULL; // Temporarily saves the value of previous newHead
while (head) {
tmpNode = newHead;
newHead = head;
head = head->next;
newHead->next = tmpNode;
}
return newHead;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment