``/** struct ListNode { int val; struct ListNode *next; }; */ class Solution { public: /** * * @param head ListNode类 * @param k int整型 * @return ListNode类 */ ListNode* reverseKGroup(ListNode* head, int k) { // write code here int m=k;//后序需要递归,k不可变,所以用一个变量替代k if(k==1||head==nullptr)//k为1...