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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
| class Solution {
public ListNode reverseKGroup(ListNode head, int k) {
if (head == null || k <= 1) {
return head;
}
ListNode dummy = new ListNode(0, head);
ListNode pre = dummy;
while (true) {
ListNode tail = pre;
for (int i = 0; i < k; i ++) {
tail = tail.next;
if (tail == null) {
return dummy.next;
}
}
ListNode next = tail.next;
ListNode groupHead = pre.next;
reverse(groupHead, tail);
pre.next = tail;
groupHead.next = next;
pre = groupHead;
}
}
private void reverse(ListNode head, ListNode tail) {
ListNode prev = null;
ListNode cur = head;
ListNode stop = tail.next;
while(cur != stop) {
ListNode nxt = cur.next;
cur.next = prev;
prev = cur;
cur = nxt;
}
}
}
|