LeetCode143. Reorder List

173 篇文章 0 订阅

Given a singly linked list LL0→L1→…→Ln-1→Ln,
reorder it to: L0→LnL1→Ln-1→L2→Ln-2→…

You may not modify the values in the list's nodes, only nodes itself may be changed.

Example 1:

Given 1->2->3->4, reorder it to 1->4->2->3.
Example 2:
Given 1->2->3->4->5, reorder it to 1->5->2->4->3.

这个题思路上不难,稍微复杂一点,分三步(以1->2->3->4为例):

1.找到中间的点,把两个链表断开  1->2   3->4

2.把后面的链表倒置                     1->2   4->3

3.把两个链表交叉连接起来           1->4->2->3

代码如下:

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

class Solution(object):
    def reorderList(self, head):
        """
        :type head: ListNode
        :rtype: None Do not return anything, modify head in-place instead.
        """
        slow = fast = head
        if not head or not head.next:return head
        
        while fast and fast.next:
            slow = slow.next
            fast = fast.next.next
        middle = slow.next
        slow.next = None
        
        prev=None
        while middle:
            cur = middle
            middle = middle.next
            cur.next = prev
            prev = cur
        
        rhead = head
        while head and prev:
            p=head.next
            q=prev.next
            head.next = prev
            prev.next = p
            
            head=p
            prev=q
            
        return rhead

需要注意的是while fast and fast.next:我之前想法是可以只写while fast.next:,但这样是不对的,因为fast如果为None会报错

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值