Reverse Linked List II

来源:互联网 发布:右肩膀酸痛 知乎 编辑:程序博客网 时间:2024/06/15 21:24

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 || m==n) return head;                ListNode *p = head, *pp = NULL, *q = NULL;        --n;        while(--m && --n){ pp = p; p = p->next; }                ListNode *pfirst = pp, *first = p;            q = p->next;        while(n--){ pp = p; p = q; q = q->next; p->next = pp; }                if(pfirst == NULL) head = p;        else pfirst->next = p;        first->next = q;                return head;    }};


0 0
原创粉丝点击