-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm24.c
34 lines (28 loc) · 890 Bytes
/
m24.c
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
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* struct ListNode *next;
* };
*/
struct ListNode* swapPairs(struct ListNode* head) {
if (!head || !head->next) {
return head;
}
// Swap of list[0] and list[1]
struct ListNode* headPointer = head->next; // Store output head
head->next = head->next->next;
headPointer->next = head;
// Starting reference nodes list[1], list[2]
struct ListNode* pointerL = head;
struct ListNode* pointerR = head->next;
while (pointerR && pointerR->next) {
pointerL->next = pointerR->next;
pointerR->next = pointerR->next->next;
pointerL->next->next = pointerR;
// Reference nodes are now list[L+2], list[R+2] i.e. shift right by 2
pointerL = pointerL->next->next;
pointerR = pointerR->next;
}
return headPointer;
}