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

【python-leetcode92-翻转链表】反转链表2

时间:2020-02-26 20:34:30      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:http   not   链表   space   技术   code   nbsp   etc   翻转   

问题描述:

反转从位置 m 到 n 的链表。请使用一趟扫描完成反转。

说明:
1 ≤ m ≤ n ≤ 链表长度。

示例:

输入: 1->2->3->4->5->NULL, m = 2, n = 4
输出: 1->4->3->2->5->NULL
class ListNode:
    def __init__(self,x):
        self.val=x
        self.next=None
n1=ListNode(1)
n2=ListNode(2)
n3=ListNode(3)
n4=ListNode(4)
n5=ListNode(5)
n1.next=n2;n2.next=n3;n3.next=n4;n4.next=n5

def printListNode(head):
    while head != None:
        print(head.val)
        head=head.next
#printListNode(n1)

class Solution:
    def reverseBetween(self, head, m, n):
        if not head:
            return None
    
        cur, prev = head, None
        while m > 1:
            prev = cur
            cur = cur.next
            m, n = m - 1, n - 1

        p2, p1 = cur, prev

        while n:
            third = cur.next
            cur.next = prev
            prev = cur
            cur = third
            n -= 1

        if p1:
            p1.next = prev
        else:
            head = prev
        p2.next = cur
        return head
s=Solution()
s.reverseBetween(n1,2,4)
printListNode(n1)

具体过程:

初始状态:

技术图片

进入第一个while循环之后:

技术图片

之后定义两个链接指针,p1,p2

技术图片

进入第二个while循环:

第一步:

技术图片

第二步:

技术图片

第三步:

技术图片

此时退出循环。

然后p1.next指向prev,p2.next指向cur 

技术图片

【python-leetcode92-翻转链表】反转链表2

标签:http   not   链表   space   技术   code   nbsp   etc   翻转   

原文地址:https://www.cnblogs.com/xiximayou/p/12368741.html

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