25. K 个一组翻转链表¶
难度:困难
题目¶
给你一个链表,每 k 个节点一组进行翻转,请你返回翻转后的链表。
k 是一个正整数,它的值小于或等于链表的长度。
如果节点总数不是 k 的整数倍,那么请将最后剩余的节点保持原有顺序。
进阶:
- 你可以设计一个只使用常数额外空间的算法来解决此问题吗?
- 你不能只是单纯的改变节点内部的值,而是需要实际进行节点交换。
示例 1:
输入:head = [1,2,3,4,5], k = 2
输出:[2,1,4,3,5]
示例 2:
输入:head = [1,2,3,4,5], k = 3
输出:[3,2,1,4,5]
示例 3:
输入:head = [1,2,3,4,5], k = 1
输出:[1,2,3,4,5]
示例 4:
输入:head = [1], k = 1
输出:[1]
提示:
- 列表中节点的数量在范围
sz
内 1 <= sz <= 5000
0 <= Node.val <= 1000
1 <= k <= sz
题解¶
遍历 k 个元素后将链表的结尾设为NULL
,执行反转操作后接上后面的链表。
注意可以使用\(\mathcal O(1)\)的空间复杂度反转链表。
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* struct ListNode *next;
* };
*/
struct ListNode *reverse(struct ListNode *head)
{
struct ListNode *prev = NULL, *cur = head, *next = head->next;
while (next != NULL)
{
cur->next = prev;
prev = cur;
cur = next;
next = next->next;
}
cur->next = prev;
return cur;
}
struct ListNode* reverseKGroup(struct ListNode* head, int k){
int i = 0;
struct ListNode *ret = NULL, *tempHead = NULL, *cur = head;
for (i = 0; i < k - 1 && cur != NULL; i++)
cur = cur->next;
if (cur == NULL)
return head;
tempHead = cur->next;
cur->next = NULL;
ret = reverse(head);
head->next = reverseKGroup(tempHead, k);
return ret;
}