public ListNode reverseBetween (ListNode head, int m, int n) { // write code here if((m-n)==0) return head; //寻找断口 int count=1; //移动指针 &nbs...