leetcode链表递归-链表反转2
/**
给你单链表的头指针 <code>head</code> 和两个整数 <code>left</code> 和 <code>right</code> ,其中 <code>left <= right</code> 。请你反转从位置 <code>left</code> 到位置 <code>right</code> 的链表节点,返回 <strong>反转后的链表</strong> 。
<p> </p>
<p><strong>示例 1:</strong></p>
<img alt="" src="https://assets.leetcode.com/uploads/2021/02/19/rev2ex2.jpg" style="width: 542px; height: 222px;" />
<pre>
<strong>输入:</strong>head = [1,2,3,4,5], left = 2, right = 4
<strong>输出:</strong>[1,4,3,2,5]
</pre>
<p><strong>示例 2:</strong></p>
<pre>
<strong>输入:</strong>head = [5], left = 1, right = 1
<strong>输出:</strong>[5]
</pre>
<p> </p>
<p><strong>提示:</strong></p>
<ul>
<li>链表中节点数目为 <code>n</code></li>
<li><code>1 <= n <= 500</code></li>
<li><code>-500 <= Node.val <= 500</code></li>
<li><code>1 <= left <= right <= n</code></li>
</ul>
<p> </p>
<p><strong>进阶:</strong> 你可以使用一趟扫描完成反转吗?</p>
<div><div>Related Topics</div><div><li>链表</li></div></div><br><div><li>👍 1239</li><li>👎 0</li></div>
*/
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode() {}
* ListNode(int val) { this.val = val; }
* ListNode(int val, ListNode next) { this.val = val; this.next = next; }
* }
*/
class Solution {
//后驱节点
//反转区间内节点
ListNode successor = null;
public ListNode reverseBetween(ListNode head, int left, int right) {
if(left==1){
return reverseN(head,right);
}
head.next= reverseBetween(head.next,left-1,right-1);
return head;
}
//反转前n个节点
ListNode reverseN(ListNode head,int n){
if(n==1){
successor = head.next;
return head;
}
ListNode last = reverseN(head.next,n-1);
head.next.next = head;
head.next = successor;
return last;
}
}
//leetcode submit region end(Prohibit modification and deletion)
不恋尘世浮华,不写红尘纷扰
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 终于写完轮子一部分:tcp代理 了,记录一下
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 别再用vector<bool>了!Google高级工程师:这可能是STL最大的设计失误
· 单元测试从入门到精通
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
2021-04-19 Lc257_二叉树的所有路径
2021-04-19 Lc222_完全二叉树的节点个数
2021-04-19 记github下载上传遇到的各种问题