加载中...
24-两两交换链表中的节点(Swap Nodes in Pairs)
发表于:2021-12-03 | 分类: 中等
字数统计: 710 | 阅读时长: 3分钟 | 阅读量:

原文链接: https://leetcode-cn.com/problems/swap-nodes-in-pairs

英文原文

Given a linked list, swap every two adjacent nodes and return its head. You must solve the problem without modifying the values in the list's nodes (i.e., only nodes themselves may be changed.)

 

Example 1:

Input: head = [1,2,3,4]
Output: [2,1,4,3]

Example 2:

Input: head = []
Output: []

Example 3:

Input: head = [1]
Output: [1]

 

Constraints:

  • The number of nodes in the list is in the range [0, 100].
  • 0 <= Node.val <= 100

中文题目

给你一个链表,两两交换其中相邻的节点,并返回交换后链表的头节点。你必须在不修改节点内部的值的情况下完成本题(即,只能进行节点交换)。

 

示例 1:

输入:head = [1,2,3,4]
输出:[2,1,4,3]

示例 2:

输入:head = []
输出:[]

示例 3:

输入:head = [1]
输出:[1]

 

提示:

  • 链表中节点的数目在范围 [0, 100]
  • 0 <= Node.val <= 100

通过代码

高赞题解

解题思路

  • 标签:链表
  • 本题的递归和非递归解法其实原理类似,都是更新每两个点的链表形态完成整个链表的调整
  • 其中递归解法可以作为典型的递归解决思路进行讲解

递归写法要观察本级递归的解决过程,形成抽象模型,因为递归本质就是不断重复相同的事情。而不是去思考完整的调用栈,一级又一级,无从下手。如图所示,我们应该关注一级调用小单元的情况,也就是单个f(x)。

fr<x>ame_00007.png{:width=”300px”}
{:align=”center”}

其中我们应该关心的主要有三点:

  1. 返回值
  2. 调用单元做了什么
  3. 终止条件

在本题中:

  1. 返回值:交换完成的子链表
  2. 调用单元:设需要交换的两个点为 head 和 next,head 连接后面交换完成的子链表,next 连接 head,完成交换
  3. 终止条件:head 为空指针或者 next 为空指针,也就是当前无节点或者只有一个节点,无法进行交换

代码

递归解法

class Solution {
    public ListNode swapPairs(ListNode head) {
        if(head == null || head.next == null){
            return head;
        }
        ListNode next = head.next;
        head.next = swapPairs(next.next);
        next.next = head;
        return next;
    }
}

非递归解法

class Solution {
    public ListNode swapPairs(ListNode head) {
        ListNode pre = new ListNode(0);
        pre.next = head;
        ListNode temp = pre;
        while(temp.next != null && temp.next.next != null) {
            ListNode start = temp.next;
            ListNode end = temp.next.next;
            temp.next = end;
            start.next = end.next;
            end.next = start;
            temp = start;
        }
        return pre.next;
    }
}

画解

<frame_00001.png,frame_00002.png,frame_00003.png,frame_00004.png,frame_00005.png,frame_00006.png>

想看大鹏画解更多高频面试题,欢迎阅读大鹏的 LeetBook:《画解剑指 Offer 》,O(∩_∩)O

统计信息

通过次数 提交次数 AC比率
343885 488314 70.4%

提交历史

提交时间 提交结果 执行时间 内存消耗 语言

相似题目

题目 难度
K 个一组翻转链表 困难
上一篇:
23-合并K个升序链表(Merge k Sorted Lists)
下一篇:
25-K 个一组翻转链表(Reverse Nodes in k-Group)
本文目录
本文目录