给你一个链表,每 k 个节点一组进行翻转,请你返回翻转后的链表。
k 是一个正整数,它的值小于或等于链表的长度。
如果节点总数不是 k 的整数倍,那么请将最后剩余的节点保持原有顺序。
示例:
给你这个链表:1->2->3->4->5 当 k = 2 时,应当返回: 2->1->4->3->5 当 k = 3 时,应当返回: 3->2->1->4->5
说明:
- 你的算法只能使用常数的额外空间。
- 你不能只是单纯的改变节点内部的值,而是需要实际进行节点交换。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/reverse-nodes-in-k-group
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public ListNode reverseKGroup(ListNode head, int k) {
ListNode hair = new ListNode(0);
hair.next = head;
// 头节点的前一个节点pre
ListNode pre = hair;
while(head != null) {
ListNode tail = pre;
// 获得尾节点tail
for(int i = 0; i < k; i++) {
tail = tail.next;
// 尾节点为null,说明不够k个处理了
if(tail == null) {
return hair.next;
}
}
// 保存tail的下一个节点
ListNode nex = tail.next;
// 反转head到tail的链表,返回新的head和tail
ListNode[] nodes = reverse(head, tail);
// 重新赋值
head = nodes[0];
tail = nodes[1];
// 重新设置头节点和尾节点的前后节点
pre.next = head;
tail.next = nex;
// 重新设置pre和head
pre = tail;
head = nex;
}
return hair.next;
}
// 反转链表
private ListNode[] reverse(ListNode head, ListNode tail) {
ListNode cur = head, prev = null;
while(prev != tail) {
ListNode nextTemp = cur.next;
cur.next = prev;
prev = cur;
cur = nextTemp;
}
return new ListNode[] {tail, head};
}
}
京公网安备 11010502036488号