This commit is contained in:
2022-11-14 11:57:10 +08:00
parent 8d4732c963
commit da63dcb16b
2 changed files with 28 additions and 0 deletions

View 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;
}