/** * struct ListNode { * int val; * struct ListNode *next; * }; */ #include <climits> class Solution { public: /** * * @param head ListNode类 * @param k int整型 * @return ListNode类 */ ListNode* reverseKGroup(ListNode* head, int k) { // write code...