s0024
This commit is contained in:
11
src/s0024_swap_nodes_in_pairs.cpp
Normal file
11
src/s0024_swap_nodes_in_pairs.cpp
Normal file
@@ -0,0 +1,11 @@
|
||||
#include "s0024_swap_nodes_in_pairs.hpp"
|
||||
|
||||
ListNode* swapPairs(ListNode* head) {
|
||||
if (head == nullptr || head->next == nullptr) {
|
||||
return head;
|
||||
}
|
||||
ListNode *newHead = head->next;
|
||||
head->next = swapPairs(newHead->next);
|
||||
newHead->next = head;
|
||||
return newHead;
|
||||
}
|
Reference in New Issue
Block a user