【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
相关推荐
ULTRA??1 分钟前
QT向量实现GJK碰撞检测算法几何图形二维版本
c++·qt·算法
flashlight_hi10 分钟前
LeetCode 分类刷题:987. 二叉树的垂序遍历
数据结构·算法·leetcode
小尧嵌入式10 分钟前
C++模板
开发语言·c++·算法
仰泳的熊猫15 分钟前
1120 Friend Numbers
数据结构·c++·算法·pat考试
仰泳的熊猫19 分钟前
1116 Come on! Let‘s C
数据结构·c++·算法·pat考试
Bear on Toilet27 分钟前
17 . 爬楼梯
算法·深度优先
ACERT33328 分钟前
03矩阵理论复习-内积空间和正规矩阵
算法·矩阵
肥猪猪爸1 小时前
TextToSql——Vanna的安装与使用
人工智能·python·算法·机器学习·大模型·ollama·vanna
谈笑也风生1 小时前
经典算法题详解之切分数组(一)
数据结构·算法·leetcode
松涛和鸣1 小时前
28、Linux文件IO与标准IO详解:从概念到实战
linux·网络·数据结构·算法·链表·list