边工作边刷题:70天一遍leetcode: day 37-1

Swap Nodes in Pairs

# Definition for singly-linked list.
# class ListNode(object):
#     def __init__(self, x):
#         self.val = x
#         self.next = None

class Solution(object):
    def swapPairs(self, head):
        """
        :type head: ListNode
        :rtype: ListNode
        """
        dummy = ListNode(0)
        dummy.next = head
        cur = head
        pre = dummy
        while cur and cur.next:
            # swap
            next = cur.next.next
            cur.next.next=cur
            pre.next = cur.next
            cur.next = next
            
            pre = cur
            cur = next
            
        return dummy.next
原文地址:https://www.cnblogs.com/absolute/p/5678245.html