2022-02-16 解題區►Leetcode►Medium Leetcode 24 - Swap Nodes in Pairs 題目 Problem# 題目給一個 Singly linked list 要你把每兩個兩個 swap 一遍,但不能只 swap value 想法# 照做即可,注意邊界 e.g. list 沒有 node 的狀態、list 只有一個 node 的狀態 時間複雜度: $\mathcal{O}(N)$ 空間複雜度: $\mathcal{O}(1)$ AC Code# 2023/05/16 second try 賞析# None Newer Leetcode 104 - Maximum Depth of Binary Tree Older Leetcode 78 - Subsets