/**
 * struct ListNode {
 *	int val;
 *	struct ListNode *next;
 *	ListNode(int x) : val(x), next(nullptr) {}
 * };
 */
class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param head ListNode类 
     * @param m int整型 
     * @param n int整型 
     * @return ListNode类
     */
    ListNode* reverseBetween(ListNode* head, int m, int n) {
        // write code here
        int length=0,a=1,b=1;ListNode *p=head,*q=head,*temp=head;
        while(temp!=nullptr){
           length++; temp=temp->next;
        }
        //if(m>n||n>length)return head;
        ListNode *front=nullptr;//前一个结点 最后要指向排好序的头
        while(a<m){
           a++; front=p;p=p->next;
        }
        while(b<n){
           b++; q=q->next;
        }
        ListNode *p1=p,*temp1=p,*next1=q->next;
        temp=p;
        while(p1->next!=next1){
            temp=p1->next;p1->next=p1->next->next;
            temp->next=p;p=temp; 
        }
        if(front==nullptr)return p;
        else{
            front->next=p;
            return head;
        }
    }
};