2023年8月——每日一题
1、8月6日 24. 两两交换链表中的节点
思路:直接模拟
使用虚拟头结点,初始时cur指向虚拟头结点,然后执行三步骤,具体见代码
C++代码
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode() : val(0), next(nullptr) {}
* ListNode(int x) : val(x), next(nullptr) {}
* ListNode(int x, ListNode *next) : val(x), next(next) {}
* };
*/
class Solution {
public:
ListNode* swapPairs(ListNode* head) {
ListNode* dummyHead = new ListNode(0);
dummyHead->next = head;
ListNode* cur = dummyHead;
while (cur && cur->next && cur->next->next) {
ListNode* node1 = cur->next;
ListNode* node2 = cur->next->next->next;
cur->next = cur->next->next;
cur->next->next = node1;
cur->next->next->next = node2;
cur = cur->next->next;
}
return dummyHead->next;
}
};