LeetCode24-两两交换链表中的节点

这篇博客介绍了LeetCode第24题的两种解法,分别是递归交换和顺序交换。解题思路1利用递归,当链表至少有两个节点时,交换头节点与其后一个节点,然后递归处理剩余部分。解题思路2通过迭代,创建虚拟头节点,依次交换每对相邻节点直到链表尾部。
摘要由CSDN通过智能技术生成

LeetCode24-两两交换链表中的节点

Leetcode / 力扣

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;
    }
};
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值