Leetcode刷题记录:[92] 反转链表 II
BaseCode:
class Solution {
public ListNode reverseBetween(ListNode head, int left, int right) {
if (head == null || left == right) {
return head;
}
ListNode cur = head;
ListNode newHead = new ListNode(0);







