public ListNode reverseKGroup (ListNode head, int k) { ListNode newhead=new ListNode(-1);//新链表头节点用来返回 ListNode newcru=newhead;//k个节点中的第一个节点,此类节点用尾插法插入。用newcru把链表分段 ListNode newcrupre=null;//[newcrupre,newcru]节点之间头插其它节点。如果i%k!=0,证明需要开启新段在newcru后面尾插节点 ...