【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
相关推荐
夏天天天天天天天#2 分钟前
求Huffman树及其matlab程序详解
算法·matlab·图论
Infedium10 分钟前
优数:助力更高效的边缘计算
算法·业界资讯
student.J30 分钟前
傅里叶变换
python·算法·傅里叶
五味香36 分钟前
C++学习,动态内存
java·c语言·开发语言·jvm·c++·学习·算法
Beauty.56842 分钟前
P1328 [NOIP2014 提高组] 生活大爆炸版石头剪刀布
数据结构·c++·算法
Aurora200543 分钟前
蓝桥杯2024省C
c语言·算法·蓝桥杯
爱棋笑谦44 分钟前
二叉树计算
java·开发语言·数据结构·算法·华为od·面试
小鱼在乎1 小时前
动态规划---最长回文子序列
算法·动态规划
xiaobai12 31 小时前
二叉树的遍历【C++】
开发语言·c++·算法
吱吱鼠叔2 小时前
MATLAB数学规划:2.线性规划
算法·机器学习·matlab