-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp24.cpp
54 lines (50 loc) · 1.07 KB
/
p24.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
#include<algorithm>
#include<vector>
#include<iostream>
#include<string>
using namespace std;
struct ListNode {
int val;
ListNode *next;
ListNode(int x) : val(x), next(NULL) {}
};
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode* swapPairs(ListNode* head) {
ListNode fakeHead(0);
ListNode *p,*q,*h;
h=&fakeHead;
h->next=head;
p=h;
while (p->next!=nullptr && p->next->next!=nullptr) {
/* p q q->next(r) */
q=p->next;
p->next=q->next;
q->next=q->next->next;
p->next->next=q;
p=p->next->next;
}
return h->next;
}
};
static const auto io_sync_off = []()
{
// turn off sync
std::ios::sync_with_stdio(false);
// untie in/out streams
std::cin.tie(nullptr);
return nullptr;
}();
int main() {
auto res = Solution().swapPairs(nullptr);
cout << res <<endl;
return 0;
}