public ListNode reverseKGroup (ListNode head, int k) { // write code here if (head == null){ return null; } //len记录链表长度 int len = 0; //eg用于遍历链表 ListNode eg = head; while (eg != null){ len++; eg = eg...