LeetCode24-两两交换链表中的节点
24. 两两交换链表中的节点:
给定一个链表,两两交换其中相邻的节点,并返回交换后的链表。
你不能只是单纯的改变节点内部的值,而是需要实际的进行节点交换。
示例 1:

输入:head = [1,2,3,4]
输出:[2,1,4,3]
示例 2:
输入:head = []
输出:[]
示例 3:
输入:head = [1]
输出:[1]
提示:
- 链表中节点的数目在范围 [0, 100] 内
- 0 <= Node.val <= 100
解题思路1:
当链表还存在两个节点时,递归交换,新的头结点和原头结点
/**
* 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==NULL||head->next==NULL)
return head;
//这个有顺序,接下来三句顺序不能变
ListNode* newHead=head->next;
head->next=swapPairs(head->next->next);
newHead->next=head;
return newHead;
}
};
解题思路2:
顺序交换到结尾
/**
* 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* rethead=new ListNode(0);
rethead->next=head;
if(head==NULL||head->next==NULL)
return head;
ListNode* first=rethead,*second=head,*third=head->next;
while(third!=NULL) {
//顺序有讲究,第三行只能最后变
second->next=third->next;
first->next=third;
third->next=second;
//向后走两步
first=first->next->next;
second=first->next;
if(second==NULL)
break;
third=second->next;
}
return rethead->next;
}
};
这篇博客介绍了LeetCode第24题的两种解法,分别是递归交换和顺序交换。解题思路1利用递归,当链表至少有两个节点时,交换头节点与其后一个节点,然后递归处理剩余部分。解题思路2通过迭代,创建虚拟头节点,依次交换每对相邻节点直到链表尾部。
292

被折叠的 条评论
为什么被折叠?



