【LeetCode 92.】 反转链表 II

1.题目

虽然本题很好拆解,但是实现起来还是有一些难度的。

2. 分析

  • 尽可能抽象问题,然后简化代码

我在写本题的时候,遇到了下面这两个问题:

  • 没有把[left,right] 这个区间的链表给断开,所以导致反转起来非常麻烦。所以在找到[left, right] 区间后,要将这个链表前后断开会比较方便操作。
  • 正是因为问题1,导致我在反转链表的时候,使用了下面这版代码:
python 复制代码
# Definition for singly-linked list.
class ListNode:
    def __init__(self, val=0, next=None):
        self.val = val
        self.next = next

class Solution:
    def reverseBetween(self, head: ListNode, left: int, right: int) :
        # 如果区间为1,不用反转
        if left == right:
            return head
        
        cnt = 1
        head_bak = head
        while(cnt < left):
            head_bak = head_bak.next
            cnt+=1
        new_left = head_bak

        head_bak = head
        cnt = 1
        while(cnt < right):
            head_bak = head_bak.next
            cnt+=1
        new_right = head_bak

        print(new_left.val, new_right.val)
        reversed_head = new_right
        reversed_tail = new_left

        split_head = head
        split_tail = new_right.next
        while(split_head.next != new_left):
            split_head = split_head.next

        # 开始反转
        pre = None
        print("hhh",new_right.next.val)
        cnt = 0 # 反转节点的个数
        # while(cnt < right-left+2):        
        while(new_left != new_right.next):
            print(id(new_right.next))
            tmp = new_left.next
            new_left.next = pre
            pre = new_left
            new_left = tmp
            cnt+=1
            # print(new_left.val , new_left == new_right.next, id(new_left), id(new_right.next))

        split_head.next = reversed_head
        reversed_tail.next = split_tail
        
        if reversed_tail == head:
            return reversed_head
        return head

head1 = ListNode(1)
head2 = ListNode(2)
head3 = ListNode(3)
head4 = ListNode(4)
head5 = ListNode(5)
head1.next = head2
head2.next = head3
head3.next = head4
head4.next = head5
head5.next = None
start = head1
while(start):
    print(id(start))
    start = start.next
s = Solution()
s.reverseBetween(head1, 2, 4)

这份代码有一个隐蔽的bug:

在 41 ~ 47 行之间。原因是 while 循环的过程中会把 new_right.next 的值给改掉(也就是44行的代码),因为new_right 指的是right那个地方的节点,这个节点new_left 在遍历的过程中也会访问。

这份代码最大的问题就是没有意识到这个new_right.next 值在while时候变化了。

3.代码

下面这份代码虽然可以过掉样例,但是代码很丑。

python 复制代码
# Definition for singly-linked list.
# class ListNode:
#     def __init__(self, val=0, next=None):
#         self.val = val
#         self.next = next
class Solution:
    def reverseBetween(self, head: ListNode, left: int, right: int) :
        # 如果区间为1,不用反转
        if left == right:
            return head
        
        cnt = 1
        head_bak = head
        while(cnt < left):
            head_bak = head_bak.next
            cnt+=1
        new_left = head_bak

        head_bak = head
        cnt = 1
        while(cnt < right):
            head_bak = head_bak.next
            cnt+=1
        new_right = head_bak

        print(new_left.val, new_right.val)
        reversed_head = new_right
        reversed_tail = new_left

        split_head = None
        split_tail = new_right.next
        cnt = 1
        hh_head = head
        while(cnt < left):
            split_head = hh_head
            hh_head = hh_head.next            
            cnt += 1

        # 开始反转
        pre = None
        # print("hhh",new_right.next.val)
        cnt = 0 # 反转节点的个数
        while(cnt < right-left+1):
            # print(id(new_right.next))
            tmp = new_left.next
            new_left.next = pre
            pre = new_left
            new_left = tmp
            cnt+=1
            # print(new_left.val , new_left == new_right.next, id(new_left), id(new_right.next))
        if split_head:
            split_head.next = reversed_head
        reversed_tail.next = split_tail
        
        if reversed_tail == head:
            return reversed_head
        return head
相关推荐
YY_TJJ4 分钟前
算法题——贪心算法
算法·贪心算法
C++ 老炮儿的技术栈10 分钟前
include″″与includ<>的区别
c语言·开发语言·c++·算法·visual studio
RainbowC040 分钟前
GapBuffer高效标记管理算法
android·算法
liu****40 分钟前
10.queue的模拟实现
开发语言·数据结构·c++·算法
mit6.82444 分钟前
10.17 枚举中间|图论
算法
让我们一起加油好吗1 小时前
【基础算法】01BFS
数据结构·c++·算法·bfs·01bfs
孤狼灬笑1 小时前
机器学习十大经典算法解析与对比
人工智能·算法·机器学习
1白天的黑夜12 小时前
递归-24.两两交换链表中的节点-力扣(LeetCode)
数据结构·c++·leetcode·链表·递归
1白天的黑夜13 小时前
递归-206.反转链表-力扣(LeetCode)
数据结构·c++·leetcode·链表·递归
靠近彗星3 小时前
3.1 栈
数据结构·算法