K 个一组翻转链表

给你一个链表,每  k  个节点一组进行翻转,请你返回翻转后的链表。
k  是一个正整数,它的值小于或等于链表的长度。
如果节点总数不是  k  的整数倍,那么请将最后剩余的节点保持原有顺序。

进阶:

  • 你可以设计一个只使用常数额外空间的算法来解决此问题吗?
  • 你不能只是单纯的改变节点内部的值,而是需要实际进行节点交换。

链接

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
function reverseKGroup(head: ListNode | null, k: number): ListNode | null {
let a = head
let b = head
for (let i = 0; i < k; i++) {
if (b == null) return head
b = b.next
}
const newHead = reverse(a, b)
a.next = reverseKGroup(b, k)
return newHead
}

const reverse = function(a: ListNode, b: ListNode) {
let pre: ListNode, cur: ListNode, nxt: ListNode
pre = null
cur = a
nxt = a
while(cur != b) {
nxt = cur.next
cur.next = pre
pre = cur
cur = nxt
}
return pre
}