24 swap-nodes-in-pairs
题目
给定一个链表,两两交换其中相邻的节点,并返回交换后的链表。
你不能只是单纯的改变节点内部的值,而是需要实际的进行节点交换。
思路
这是交换k个节点的特殊情况,k=2。
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode* swapPairs(ListNode* head) {
if(head==nullptr || head->next == nullptr)
return head;
ListNode* p = swapPairs(head->next->next);
ListNode* new_head = head->next;
head->next->next = head;
head->next = p;
return new_head;
}
};