给你一个链表,两两交换其中相邻的节点,并返回交换后链表的头节点。你必须在不修改节点内部的值的情况下完成本题(即,只能进行节点交换)。
示例 1:
输入:head = [1,2,3,4] 输出:[2,1,4,3]
示例 2:
输入:head = [] 输出:[]
示例 3:
输入:head = [1] 输出:[1]
提示:
[0, 100]
?内0 <= Node.val <= 100
/**
* 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) {
if(head==nullptr)
return nullptr;
vector<ListNode*> vc;
while(head!=nullptr)
{
vc.push_back(head);
head=head->next;
}
int n= vc.size();
for(int i=0;i<n;)
{
if(i+1<n)
{
swap(vc[i],vc[i+1]);
}
if(i+2<n)
i+=2;
else
break;
}
for(int i=0;i<n;i++)
{
if(i+1<n)
vc[i]->next=vc[i+1];
}
vc[n-1]->next=nullptr;
return vc[0];
}
};