LeetCode Reorder List

LeetCode解题之Reorder List

原题

将单向链表L0→L1→…→Ln-1→Ln转化为L0→Ln→L1→Ln-1→L2→Ln-2→…的形式,也就是从头部取一个节点,从尾部取一个节点,直到将原链表转化成新的链表。

注意点:

  • 不要申请额外的空间
  • 不要修改节点的数值

例子:

输入: {1,2,3,4}

输出: {1,4,2,3}

解题思路

由于是一个单向链表,从尾部不断取元素比较困难,所以我们要将链表反转,又因为是同时从两头取元素,所以我们只需要反转后半段链表。我们先通过快慢指针来获得链表的中间节点,并将链表截断。接着翻转后半段链表,最后依次从两个链表中提取元素进行连接。需要注意的是,在截断时注意哪个链表比较长,合并的时候不要遗漏元素。

AC源码

class Solution(object):
    def reorderList(self, head):
        """ :type head: ListNode :rtype: void Do not return anything, modify head in-place instead. """
        if not head:
            return
        # split
        fast = slow = head
        while fast and fast.next:
            slow = slow.next
            fast = fast.next.next
        head1, head2 = head, slow.next
        slow.next = None
        # reverse
        cur, pre = head2, None
        while cur:
            nex = cur.next
            cur.next = pre
            pre = cur
            cur = nex
        # merge
        cur1, cur2 = head1, pre
        while cur2:
            nex1, nex2 = cur1.next, cur2.next
            cur1.next = cur2
            cur2.next = nex1
            cur1, cur2 = nex1, nex2


if __name__ == "__main__":
    None

欢迎查看我的Github (https://github.com/gavinfish/LeetCode-Python) 来获得相关源码。

你可能感兴趣的:(LeetCode,算法,python,链表)