-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathReverse_Linked_List.cpp
59 lines (56 loc) · 1.41 KB
/
Reverse_Linked_List.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
void reverseListRecur(ListNode* head, ListNode* &head2) {
if(!head) return;
int value = head->val;
reverseListRecur(head->next, head2);
head2->val = value;
head2 = head2->next;
}
ListNode* reverseList(ListNode* head) {
// Iteratively
/*
stack<int> Stack;
ListNode *iter = head;
while(iter) {
Stack.push(iter->val);
iter = iter->next;
}
iter = head;
while(!Stack.empty()) {
iter->val = Stack.top();
Stack.pop();
iter = iter->next;
}
return head;
*/
// recursively
/*
ListNode *iter = head;
ListNode *head2 = head;
reverseListRecur(head2, head);
return head;
*/
// O(n) without extra space :)
if(!head or !head->next) return head;
ListNode* curr = head;
ListNode* prev = nullptr;
ListNode* newHead = nullptr;
while(curr) {
ListNode* nxt = curr->next;
curr->next = prev;
newHead = curr;
prev = curr;
curr = nxt;
}
return newHead;
}
};