码迷,mamicode.com
首页 > 编程语言 > 详细

[LeetCode] Reverse Linked List II @ Python

时间:2014-09-14 23:38:47      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   strong   for   

原题地址:https://oj.leetcode.com/problems/reverse-linked-list-ii/

题意:

Reverse a linked list from position m to n. Do it in-place and in one-pass.

For example:
Given 1->2->3->4->5->NULLm = 2 and n = 4,

return 1->4->3->2->5->NULL.

Note:
Given mn satisfy the following condition:
1 ≤ m ≤ n ≤ length of list.

解题思路:翻转链表的题目。请用积木化思维(Building block): 

这里必须的积木:链表翻转操作:

current.next, prev, current = prev, current, current.next

代码:


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

class Solution:
    # @param head, a ListNode
    # @param m, an integer
    # @param n, an integer
    # @return a ListNode
    def reverseBetween(self, head, m, n):
        diff, dummy = n - m, ListNode(0)
        dummy.next = head
        prev, current = dummy, dummy.next
        while current and m >1:
            prev, current = current, current.next
            m -= 1
        last_swapped, first_swapped = prev, current
        while current and diff >= 0:
            current.next, prev, current = prev, current, current.next
            diff -= 1
        last_swapped.next, first_swapped.next = prev, current
        return dummy.next
            

        # Reverse partial Linked List
        # Refer Figure1: http://images.cnitblog.com/i/546654/201404/072244468407048.jpg
        # Refer: http://www.cnblogs.com/4everlove/p/3651002.html
        # Refer: http://stackoverflow.com/questions/21529359/reversing-a-linked-list-in-python
        # 1 --> 2 --> 3 --> 4 --> 5
        #       
        #      first_swapped.next = current
        #       __________________  
        #       ^                 |      
        #       |                 V 
        # 1     2 <-- 3 <-- 4     5
        # |                 ^
        # V ________________| 
        # last_unswapped.next=prev

 

[LeetCode] Reverse Linked List II @ Python

标签:style   blog   http   color   io   os   ar   strong   for   

原文地址:http://www.cnblogs.com/asrman/p/3971933.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!