class Solution { public: ListNode* reverseKGroup(ListNode* head, int k) { //找到每次翻转的尾部 ListNode* tail = head; //遍历k次到尾部 for(int i = 0; i < k; i++){  ...