输入:head = [1,2,3,4]
输出:[2,1,4,3]
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;
}
}
总结:这道题利用递归的解法来做,确实可以减小考虑的复杂度。关键点是要找到正确的终止条件。看题解非常简单,但是为何却划分为 Medium,因为解这道题需要链表的前置知识。