Reverse Linked List II

来源:互联网 发布:淘宝 新增网站推广 编辑:程序博客网 时间:2024/06/18 12:47

Reverse Linked List II

 

Reverse a linked list from position m to n. Do it in-place and in one-pass.

For example:
Given 1->2->3->4->5->NULLm = 2 and n = 4,

return 1->4->3->2->5->NULL.

Note:
Given mn satisfy the following condition:
1 ≤ m ≤ n ≤ length of list.

/** * Definition for singly-linked list. * struct ListNode { *     int val; *     ListNode *next; *     ListNode(int x) : val(x), next(NULL) {} * }; */class Solution {public:    ListNode *reverseBetween(ListNode *head, int m, int n) {                if(head==NULL)            return NULL;                    ListNode *p=head,*q,*pre,*next;        int k=0;                pre=NULL;        while(++k<m)        {            pre=p;            p=p->next;        }        q=pre;                ListNode *e=p;        pre=p;        p=p->next;        while(++k<=n)        {            next=p->next;            p->next=pre;            pre=p;            p=next;        }        e->next=p;        if(q)            q->next=pre;        else             head=pre;        return head;    }};

0 0
原创粉丝点击