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
|
class Solution { public: ListNode* reverse(ListNode* head, ListNode* tail) { if (head == tail) return head;
auto x = reverse(head->next, tail); head->next->next = head; head->next = NULL; return tail; }
ListNode* reverseKGroup(ListNode* head, int k) { if (!head) return head;
auto p = head; ListNode* pre = NULL; for (int i = 0; i < k; ++i) { if (!p) return head; pre = p; p = p->next; }
reverse(head, pre);
auto x = reverseKGroup(p, k); head->next = x; return pre; } };
|