给你单链表的头指针 head 和两个整数 left 和 right ,其中 left <= right 。请你反转从位置 left 到位置 right 的链表节点,返回反转后的链表 。
示例 1:
输入:head = [1,2,3,4,5], left = 2, right = 4
输出:[1,4,3,2,5]
示例 2:
输入:head = [5], left = 1, right = 1
输出:[5]
提示:
链表中节点数目为 n
1 <= n <= 500
-500 <= Node.val <= 500
1 <= left <= right <= n
进阶: 你可以使用一趟扫描完成反转吗?
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/reverse-linked-list-ii
(1)双指针
参考递归反转链表:如何拆解复杂问题。
//思路1————双指针
/**
* 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 {
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;
}
//后驱节点
public ListNode successor = null;
//反转以head为起点的n个节点,返回新的头节点
public ListNode reverseN(ListNode head, int n) {
if (n == 1) {
//记录第n+1个节点
successor = head.next;
return head;
}
//以head.next为起点,需要反转前n-1个节点
ListNode last = reverseN(head.next, n - 1);
head.next.next = head;
//让反转之后的head节点和后面的节点连接起来
head.next = successor;
return last;
}
}
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://blog.csdn.net/weixin_43004044/article/details/122758586
内容来源于网络,如有侵权,请联系作者删除!