-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathsolve.cpp
107 lines (107 loc) · 1.81 KB
/
solve.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
#include <string>
using namespace std;
#include <stdlib.h>
struct ListNode {
int val;
ListNode *next;
ListNode(int x): val(x), next(nullptr) {}
};
class Solution {
public:
ListNode *reverseBetween(ListNode *head, int m, int n) {
if (!head || m == n) {
return head;
}
ListNode *start = head;
ListNode *end = head;
ListNode *prev = nullptr;
while (--m) {
prev = start;
start = start->next;
end = end->next;
n--;
}
while (--n) {
end = end->next;
}
reverse(start, end);
if (prev)
prev->next = end;
else
head = end;
return head;
}
private:
void reverse(ListNode *start, ListNode *end) {
if (!start || !start->next)
return;
ListNode *pre = nullptr;
ListNode *p = start;
while (p && pre != end) {
ListNode *q = p->next;
p->next = pre;
pre = p;
p = q;
}
start->next = p;
}
};
int getLength(ListNode *head)
{
int len = 0;
ListNode *p = head;
while (p) {
++len;
p = p->next;
}
return len;
}
void print(ListNode *head)
{
if (head == nullptr) {
printf("NULL\n");
return;
}
struct ListNode *p = head;
while (p) {
printf("%d ", p->val);
p = p->next;
}
printf("\n");
}
ListNode * mk_list(ListNode **ha, int a[], int n)
{
if (n < 1)
return nullptr;
ListNode *p = new ListNode(a[0]);
*ha = p;
for (int i = 1; i < n; ++i) {
ListNode *q = new ListNode(a[i]);
p->next = q;
p = q;
}
return p;
}
void free_list(struct ListNode *head)
{
struct ListNode *p = head;
while (p) {
struct ListNode *q = p->next;
delete p;
p = q;
}
}
int main(int argc, char **argv)
{
Solution solution;
struct ListNode *head = NULL;
int a[] = {1, 2, 3, 4, 5};
mk_list(&head, a, 5);
head = solution.reverseBetween(head, 1, 3);
print(head);
return 0;
}