题目
两两交换链表中的节点 https://leetcode-cn.com/problems/swap-nodes-in-pairs/
题目描述
给你一个链表,两两交换其中相邻的节点,并返回交换后链表的头节点。你必须在不修改节点内部的值的情况下完成本题(即,只能进行节点交换)。
示例 1:
输入:head = [1,2,3,4]
输出:[2,1,4,3]
示例 2:
输入:head = []
输出:[]
示例 3:
输入:head = [1]
输出:[1]
提示:
链表中节点的数目在范围 [0, 100] 内
0 <= Node.val <= 100
思路1(迭代法)
代码1(JavaScript)
var swapPairs = function(head) {
if (!head || !head.next) {
return head;
}
let prehead = new ListNode();
prehead.next = head;
let temp = prehead;
while (temp.next !== null && temp.next.next !== null) {
const node1 = temp.next;
const node2 = temp.next.next;
temp.next = node2;
node1.next = node2.next;
node2.next = node1;
temp = node1;
}
return prehead.next;
};
复杂度1
-
时间复杂度
O(n) 所有的节点都需要遍历一遍
-
空间复杂度
O(1)
思路2 (迭代法)
在分析迭代的过程中就能体会到递归的思路
代码2(JavaScript)
var swapPairs = function(head) {
if (!head || !head.next) {
return head;
}
let res = new ListNode();
res = head.next;
head.next = swapPairs(res.next);
res.next = head;
return res;
};
复杂度分析2
- 时间复杂度 O(n)
- 空间复杂度 O(1)