题目地址
题目描述
给定一个链表,两两交换其中相邻的节点,并返回交换后的链表。
你不能只是单纯的改变节点内部的值,而是需要实际的进行节点交换。
示例 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;
}
}
复杂度分析
-
时间复杂度:,其中 是链表的节点数量。需要对每个节点进行更新指针的操作。
-
空间复杂度:,其中 是链表的节点数量。空间复杂度主要取决于递归调用的栈空间。
迭代
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;
}
}
复杂度分析
-
时间复杂度:,其中 是链表的节点数量。需要对每个节点进行更新指针的操作。
-
空间复杂度: