Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 650 Bytes

24.md

File metadata and controls

39 lines (29 loc) · 650 Bytes

Swap Nodes in Pairs

Description

link


Solution

See Code


Code

O(n)

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

class Solution:
    def swapPairs(self, head):
        """
        :type head: ListNode
        :rtype: ListNode
        """
        pre, pre.next = self, head
        while pre.next and pre.next.next:
            a = pre.next
            b = a.next
            pre.next, b.next, a.next = b, a, b.next
            pre = a
        return self.next