-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathlist.cpp
131 lines (128 loc) · 2.33 KB
/
list.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#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:
bool isPalindrome(ListNode *head) {
/* 空节点和单节点 */
if (head == nullptr || head->next == nullptr)
return true;
ListNode *mid = getMiddleNode(head);
ListNode *h1 = head;
ListNode *h2 = reverse(mid->next);
while(h1 && h2) {
if (h1->val != h2->val)
return false;
h1 = h1->next;
h2 = h2->next;
}
return true;
}
private:
ListNode *getMiddleNode(ListNode *head) {
if (head == nullptr)
return nullptr;
ListNode *slow = head, *fast = head;
while (fast && fast->next) {
fast = fast->next->next;
slow = slow->next;
}
return slow;
}
ListNode *reverse(ListNode *head) {
if (head == nullptr || head->next == nullptr)
return head;
ListNode *prev = nullptr;
ListNode *p = head;
while (p) {
ListNode *q = p->next;
p->next = prev;
prev = p;
p = q;
}
return prev;
}
int getLength(ListNode *head) {
int size = 0;
ListNode *p = head;
while(p) {
size++;
p = p->next;
}
return size;
}
};
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(int a[], int n)
{
if (n < 1)
return nullptr;
ListNode *head = new ListNode(a[0]);
ListNode *p = head;
for (int i = 1; i < n; ++i) {
ListNode *q = new ListNode(a[i]);
p->next = q;
p = q;
}
return p;
}
ListNode * mk_list(const vector<int> &v) {
int n = v.size();
if (n < 1)
return nullptr;
ListNode *head = new ListNode(v[0]);
ListNode *p = head;
for (int i = 1; i < n; ++i) {
ListNode *q = new ListNode(v[i]);
p->next = q;
p = q;
}
return head;
}
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 = mk_list({1,2,2,1});
cout << solution.isPalindrome(head) << endl;
return 0;
}