Open
Description
给你单链表的头指针 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
/**
* Definition for singly-linked list.
* function ListNode(val, next) {
* this.val = (val===undefined ? 0 : val)
* this.next = (next===undefined ? null : next)
* }
*/
/**
* @param {ListNode} head
* @param {number} left
* @param {number} right
* @return {ListNode}
92. 反转链表 II
left = 2 right = 4
定义一个虚拟的头节点
-1 -> 1 -> 2 -> 3 -> 4 -> 5
pre cur
pre cur
pre cur
2 -> 3 -> 4
p q
*/
var reverseBetween = function(head, left, right) {
const newNode = new ListNode(-1, head)
let pre = newNode, cur = head, next
let n = right - left + 1
while(--left) {
pre = pre.next
cur = cur.next
}
while(--n) {
cur = cur.next
}
next = cur.next
cur.next = null
const reverseHead = reverse(pre.next, next)
pre.next = reverseHead
return newNode.next
};
var reverse = function (head, next) {
let pre = head, cur = head.next
while(head.next) {
head.next = cur.next
cur.next = pre
pre = cur
cur = head.next
}
head.next = next
return pre
}