【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
相关推荐
闯闯爱编程11 分钟前
数组与特殊压缩矩阵
数据结构·算法·矩阵
秋风战士20 分钟前
通信算法之255:无人机频谱探测设备技术详解
算法·无人机
laimaxgg1 小时前
数据结构B树的实现
开发语言·数据结构·c++·b树·算法
mit6.8241 小时前
[Lc6_记忆化搜索] 最长递增子序列 | 矩阵中的最长递增路径
c++·算法·leetcode
Y1nhl2 小时前
搜广推校招面经六十四
人工智能·深度学习·leetcode·广告算法·推荐算法·搜索算法
ylfhpy3 小时前
Java面试黄金宝典30
java·数据库·算法·面试·职场和发展
灋✘逞_兇3 小时前
链表的操作-反转链表
数据结构·链表
明.2443 小时前
DFS 洛谷P1123 取数游戏
算法·深度优先
简简单单做算法5 小时前
基于mediapipe深度学习和限定半径最近邻分类树算法的人体摔倒检测系统python源码
人工智能·python·深度学习·算法·分类·mediapipe·限定半径最近邻分类树
Tisfy6 小时前
LeetCode 2360.图中的最长环:一步一打卡(不撞南墙不回头) - 通过故事讲道理
算法·leetcode··题解