Skip to content

No.24 两两交换链表中的节点

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

示例 1: swap_ex1

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

示例 2:

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

示例 3:

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

提示:

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

解题思路

实现

双指针

设置一个 dummy 节点简化操作,dummy.next 指向 head

  1. 初始化 first 为第一个节点
  2. 初始化 second 为第二个节点
  3. 初始化 current 为 dummy
  4. first.next = second.next
  5. current.next = second
  6. current 移动 2 格
  7. 重复执行
js
/**
 * Definition for singly-linked list.
 * function ListNode(val, next) {
 *     this.val = (val===undefined ? 0 : val)
 *     this.next = (next===undefined ? null : next)
 * }
 */
/**
 * @param {ListNode} head
 * @return {ListNode}
 */
var swapPairs = function (head) {
  const dummy = new ListNode();
  dummy.next = head;
  let current = dummy;
  while (current.next && current.next.next) {
    // 初始化双指针
    const first = current.next;
    const second = current.next.next;

    // 更新双指针和 current 指针
    first.next = second.next;
    second.next = first;
    current.next = second;

    // 指针移动
    current = current.next.next;
  }
  return dummy.next;
};