给你一个链表,两两交换其中相邻的节点,并返回交换后链表的头节点。你必须在不修改节点内部的值的情况下完成本题(即,只能进行节点交换)。
思路
- 修改指针指向
学习点
- 添加一个空的头节点,方便统一交换,不需要单独针对 head 节点设置
代码
class Solution {
public:
ListNode* swapPairs(ListNode* head) {
// 新建头节点
ListNode *head_node = new ListNode(-1, head);
// 前一个节点
ListNode *pre = head_node;
// 当前节点
ListNode *curr = head;
while (curr != nullptr)
{
// 下一个节点
ListNode *post = curr->next;
// post 不为 null
if (post != nullptr)
{
curr->next = post->next;
post->next = curr;
pre->next = post;
}
// forward
pre = curr;
curr = curr->next;
}
return head_node->next;
}
};