【做题也是一场游戏】24. 两两交换链表中的节点

184 阅读1分钟

题目地址

leetcode-cn.com/problems/sw…

题目描述

给定一个链表,两两交换其中相邻的节点,并返回交换后的链表。

你不能只是单纯的改变节点内部的值,而是需要实际的进行节点交换。

示例 1:

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

示例 2:

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

示例 3:

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

提示:

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

题解

递归

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

复杂度分析

  • 时间复杂度:O(n)O(n),其中 nn 是链表的节点数量。需要对每个节点进行更新指针的操作。

  • 空间复杂度:O(n)O(n),其中 nn 是链表的节点数量。空间复杂度主要取决于递归调用的栈空间。

迭代

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

        ListNode newHead = head.next;
        ListNode current = head;
        while(current != null) {
            ListNode next = current.next;
            if (next == null) {
                break;
            }
            ListNode temp = next.next;
            next.next = current;
            if (temp != null && temp.next != null) {
                current.next = temp.next;
            } else {
                current.next = temp;
            }
            current = temp;
        }

        return newHead;
    }
}

复杂度分析

  • 时间复杂度:O(n)O(n),其中 nn 是链表的节点数量。需要对每个节点进行更新指针的操作。

  • 空间复杂度:O(1)O(1)