-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0024.swap_nodes_in_pairs.cpp
60 lines (52 loc) · 1.45 KB
/
0024.swap_nodes_in_pairs.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
60
#include <iostream>
#include <vector>
#include "leetcode.h"
ListNode* swap_pairs(ListNode *head)
{
if (head == nullptr || head->next == nullptr) {
return head;
}
ListNode *next = head->next;
head->next = swap_pairs(next->next);
next->next = head;
return next;
}
ListNode* _swap_pairs(ListNode *head)
{
// ListNode *dummy = new ListNode(-1, head);
// ListNode *cur = dummy, *temp = nullptr;
//
// auto swap = [](ListNode *head) -> ListNode* {
//
// };
//
// // 如果有两个节点的话,那么交换这两个
// // cur 是当前节点的前驱,实际要交换的是 cur->next 和 cur->next->next
// if (cur != nullptr && cur->next != nullptr && cur->next->next != nullptr) {
// temp = cur->next;
// cur->next = cur->next->next;
// temp->next = cur->next->next;
// cur->next->next = temp;
// } else if (cur != nullptr && cur->next != nullptr && cur->next->next == nullptr) {
// // 如果只有一个节点的话,不需要交换了啊
// }
//
// return dummy->next;
}
using std::vector;
int main () {
#ifdef LOCAL
freopen("0024.in", "r", stdin);
#endif
int n = 0;
while (std::cin >> n) {
vector<int> nums(n, 0);
for (int i = 0; i < n; ++i) {
std::cin >> nums[i];
}
ListNode *head = build_list(nums);
ListNode *res = swap_pairs(head);
show_list(res);
}
return 0;
}