翻转链表II
反转从位置 m 到 n 的链表。请使用一趟扫描完成反转。
说明:
1 ≤ m ≤ n ≤ 链表长度。
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public ListNode reverseBetween(ListNode head, int m, int n) {
ListNode dummy = new ListNode(-1);
dummy.next = head;
ListNode pre = dummy;
for(int i = 1; i < m; i++) {
pre = pre.next;
}
//头插法
ListNode p = pre.next;
for(int j = m; j < n; j++) {
ListNode q = p.next;
p.next = q.next;
q.next = pre.next;
pre.next = q;
}
return dummy.next;
}
}