Skip to content

Commit b9b5f0e

Browse files
committed
Implement 'q_swap' function
Use 'first' and 'second' pointers to traverse the list and detect if there is a pair of nodes. Remove the 'first' node in the pair using the 'list_del' API, then swap the 'first' and 'second' nodes by inserting the 'first' node after the 'second' node using the 'list_add' API. Change-Id: Id008f936abdb04455ec9ac4ba19f45759ff57757
1 parent 94f14c5 commit b9b5f0e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

queue.c

+10
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,16 @@ bool q_delete_dup(struct list_head *head)
173173
void q_swap(struct list_head *head)
174174
{
175175
// https://leetcode.com/problems/swap-nodes-in-pairs/
176+
if (!head)
177+
return;
178+
179+
struct list_head *first = head->next;
180+
struct list_head *second = first->next;
181+
for (; first != head && second != head;
182+
first = first->next, second = first->next) {
183+
list_del(first);
184+
list_add(first, second);
185+
}
176186
}
177187

178188
/* Reverse elements in queue */

0 commit comments

Comments
 (0)