1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
class Solution { public ListNode swapPairs(ListNode head) { if (head == null || head.next == null) return head; ListNode ans = new ListNode(0, head); ListNode pre = ans, cur = head; while (cur != null && cur.next != null) { ListNode temp = cur.next; cur.next = temp.next; temp.next = cur; pre.next = temp; pre = cur; cur = cur.next; } return ans.next; } }
|