algorithm-base/animation-simulation/链表篇/leetcode92反转链表2.md

221 lines
6.9 KiB
Java
Raw Normal View History

2021-03-26 11:58:47 +00:00
> 如果阅读时发现错误或者动画不可以显示的问题可以添加我微信好友 **[tan45du_one](https://raw.githubusercontent.com/tan45du/tan45du.github.io/master/个人微信.15egrcgqd94w.jpg)** ,备注 github + 题目 + 问题 向我反馈
>
> 感谢支持该仓库会一直维护希望对各位有一丢丢帮助
>
> 另外希望手机阅读的同学可以来我的 <u>[**公众号袁厨的算法小屋**](https://raw.githubusercontent.com/tan45du/test/master/微信图片_20210320152235.2pthdebvh1c0.png)</u> 两个平台同步,想要和题友一起刷题,互相监督的同学,可以在我的小屋点击<u>[**刷题小队**](https://raw.githubusercontent.com/tan45du/test/master/微信图片_20210320152235.2pthdebvh1c0.png)</u>进入。
2021-07-15 16:06:52 +00:00
今天我们来说一下反转链表 2其实这个和 1 的思路差不多今天先说一个比较好理解的方法完全按照反转链表 1 的方法来解决大家看这个题目之前要先看一下[动画模拟leetcode 206 反转链表](https://github.com/chefyuan/algorithm-base/blob/main/animation-simulation/%E9%93%BE%E8%A1%A8%E7%AF%87/leetcode206%E5%8F%8D%E8%BD%AC%E9%93%BE%E8%A1%A8.md)。
2021-03-26 11:58:47 +00:00
下面我们先来看一下题目
#### [92. 反转链表 II](https://leetcode-cn.com/problems/reverse-linked-list-ii/)
给你单链表的头指针 `head` 和两个整数 `left` `right` 其中 `left <= right` 请你反转从位置 `left` 到位置 `right` 的链表节点返回 **反转后的链表**
**示例 1**
![img](https://assets.leetcode.com/uploads/2021/02/19/rev2ex2.jpg)
> 输入head = [1,2,3,4,5], left = 2, right = 4
> 输出[1,4,3,2,5]
**示例 2**
> 输入head = [5], left = 1, right = 1
> 输出[5]
含义就是让我们反转部分链表也就是上面蓝色的部分那我们怎么借助 1 的方法来解决呢
我们主要通过两部分来解决先截取需要翻转的部分然后再头尾交换即可下面我们通过一个动画来看看具体步骤
2021-03-27 08:38:40 +00:00
![在这里插入图片描述](https://img-blog.csdnimg.cn/20210327163804112.gif)
2021-03-26 11:58:47 +00:00
是不是很容易理解下面我们来看代码吧
2021-04-28 10:28:00 +00:00
**题目代码**
Java Code:
2021-03-26 11:58:47 +00:00
```java
class Solution {
public ListNode reverseBetween(ListNode head, int left, int right) {
//虚拟头节点
ListNode temp = new ListNode(-1);
temp.next = head;
ListNode pro = temp;
//来到 left 节点前的一个节点
int i = 0;
for (; i < left-1; ++i) {
pro = pro.next;
}
2021-07-13 15:39:22 +00:00
//保存 left 节点前的一个节点
2021-03-26 11:58:47 +00:00
ListNode leftNode = pro;
2021-07-13 15:39:22 +00:00
//来到 right 节点
2021-03-26 11:58:47 +00:00
for (; i < right; ++i) {
pro = pro.next;
}
2021-07-13 15:39:22 +00:00
//保存 right 节点后的一个节点
2021-03-26 11:58:47 +00:00
ListNode rightNode = pro.next;
//切断链表
2021-07-13 15:39:22 +00:00
pro.next = null;//切断 right 后的部分
ListNode newhead = leftNode.next;//保存 left 节点
leftNode.next = null;//切断 left 前的部分
//反转
leftNode.next = reverse(newhead);
2021-03-26 11:58:47 +00:00
//重新接头
newhead.next = rightNode;
return temp.next;
}
//和反转链表1代码一致
2021-07-13 15:39:22 +00:00
public ListNode reverse (ListNode head) {
ListNode low = null;
2021-03-26 11:58:47 +00:00
ListNode pro = head;
while (pro != null) {
ListNode temp = pro;
pro = pro.next;
temp.next = low;
low = temp;
}
return low;
}
}
```
2021-04-28 10:28:00 +00:00
C++ Code:
```cpp
class Solution {
public:
ListNode* reverseBetween(ListNode* head, int left, int right) {
2021-07-13 15:39:22 +00:00
//虚拟头节点
2021-04-28 10:28:00 +00:00
ListNode * temp = new ListNode(-1);
temp->next = head;
ListNode * pro = temp;
//来到 left 节点前的一个节点
int i = 0;
for (; i < left-1; ++i) {
pro = pro->next;
}
2021-07-13 15:39:22 +00:00
//保存 left 节点前的一个节点
2021-04-28 10:28:00 +00:00
ListNode * leftNode = pro;
2021-07-13 15:39:22 +00:00
//来到 right 节点
2021-04-28 10:28:00 +00:00
for (; i < right; ++i) {
pro = pro->next;
}
2021-07-13 15:39:22 +00:00
//保存 right 节点后的一个节点
2021-04-28 10:28:00 +00:00
ListNode * rightNode = pro->next;
//切断链表
2021-07-13 15:39:22 +00:00
pro->next = nullptr;//切断 right 后的部分
ListNode * newhead = leftNode->next;//保存 left 节点
leftNode->next = nullptr;//切断 left 前的部分
//反转
leftNode->next = reverse(newhead);
2021-04-28 10:28:00 +00:00
//重新接头
newhead->next = rightNode;
return temp->next;
}
2021-07-13 15:39:22 +00:00
//和反转链表1代码一致
ListNode * reverse (ListNode * head) {
2021-04-28 10:28:00 +00:00
ListNode * low = nullptr;
ListNode * pro = head;
while (pro != nullptr) {
ListNode * temp = pro;
pro = pro->next;
temp->next = low;
low = temp;
}
return low;
}
};
```
2021-07-13 15:39:22 +00:00
JS Code:
```js
var reverseBetween = function(head, left, right) {
//虚拟头节点
let temp = new ListNode(-1);
temp.next = head;
let pro = temp;
//来到 left 节点前的一个节点
let i = 0;
for (; i < left-1; ++i) {
pro = pro.next;
}
//保存 left 节点前的一个节点
let leftNode = pro;
//来到 right 节点
for (; i < right; ++i) {
pro = pro.next;
}
//保存 right 节点后的一个节点
let rightNode = pro.next;
//切断链表
pro.next = null;//切断 right 后的部分
let newhead = leftNode.next;//保存 left 节点
leftNode.next = null;//切断 left 前的部分
//反转
leftNode.next = reverse(newhead);
//重新接头
newhead.next = rightNode;
return temp.next;
};
//和反转链表1代码一致
var reverse = function(head) {
let low = null;
let pro = head;
while (pro) {
let temp = pro;
pro = pro.next;
temp.next = low;
low = temp;
}
return low;
};
```
Python Code:
2021-07-15 16:06:52 +00:00
```python
2021-07-13 15:39:22 +00:00
class Solution:
def reverseBetween(self, head: ListNode, left: int, right: int) -> ListNode:
# 虚拟头节点
temp = ListNode(-1)
temp.next = head
pro = temp
# 来到 left 节点前的一个节点
for _ in range(left - 1):
pro = pro.next
# 保存 left 节点前的第一个节点
leftNode = pro
for _ in range(right - left + 1):
pro = pro.next
# 保存 right 节点后的节点
rightNode = pro.next
# 切断链表
pro.next = None # 切断 right 后的部分
newhead = leftNode.next # 保存 left 节点
leftNode.next = None # 切断 left 前的部分
# 反转
leftNode.next = self.reverse(newhead)
# 重新接头
newhead.next = rightNode
return temp.next
# 和反转链表1代码一致
def reverse(self, head):
low = None
pro = head
while pro is not None:
temp = pro
pro = pro.next
temp.next = low
low = temp
return low
```