-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathP92.cpp
60 lines (59 loc) · 1.35 KB
/
P92.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#include "header.h"
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
struct ListNode {
int val;
ListNode *next;
ListNode(int x) : val(x), next(NULL) {}
};
class Solution {
public:
ListNode* reverseBetween(ListNode* head, int m, int n) {
ListNode *p,*pre;
p = head;
pre = nullptr;
for (int i=1;i<m;i++) {
pre = p;
p=p->next;
}
ListNode *insertPre = pre;
if (pre)
pre=pre->next;
else
pre=head;
for (int i=m;i<n;i++) {
p = delAfter(&head,pre);
insertAfter(&head,insertPre,p);
}
return head;
}
ListNode* delAfter(ListNode **phead, ListNode *pre) {
ListNode *p;
if (!pre) {
p = *phead;
*phead = (*phead)->next;
return p;
}
p = pre->next;
pre->next = p->next;
return p;
}
void insertAfter(ListNode **phead, ListNode *pre, ListNode *toInsert) {
ListNode *p = pre;
if (!pre) {
// insert head
toInsert->next=*phead;
*phead = toInsert;
return;
}
toInsert->next = pre->next;
pre->next=toInsert;
return;
}
};