-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpalindrome.cpp
More file actions
86 lines (77 loc) · 1.83 KB
/
Copy pathpalindrome.cpp
File metadata and controls
86 lines (77 loc) · 1.83 KB
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
/*
Implement a function to check if a linked list is a palindrome
*/
#include <string>
#include <iostream>
struct Node {
Node* next;
char data;
};
Node* createLinkedList(const std::string& str) {
if (str.empty())
return nullptr;
Node* curr, *prev = nullptr, *head = nullptr;
size_t i = 0;
do
{
curr = new Node();
curr->data = str[i];
if (head == nullptr)
head = curr;
if (prev != nullptr)
prev->next = curr;
prev = curr;
} while (++i < str.size());
return head;
}
void destroyLinkedList(Node* curr) {
if (curr == nullptr) {
return;
}
destroyLinkedList(curr->next);
delete curr;
}
size_t getLength(Node* node, size_t pos = 1) {
if (node == nullptr)
return 0;
if (node->next == nullptr)
return pos;
return getLength(node->next, pos + 1);
}
bool isPalindrome(Node* curr, const size_t length, const size_t pos = 0, Node** mirror = nullptr) {
Node* next;
if (pos == length / 2) {
if (length % 2 == 0) {
next = curr;
} else {
if (mirror != nullptr)
next = curr->next;
}
if (mirror != nullptr)
*mirror = next;
return true;
}
if (!isPalindrome(curr->next, length, pos + 1, &next)) {
return false;
}
if (curr->data == next->data) {
if (mirror != nullptr)
*mirror = next->next;
return true;
} else {
return false;
}
}
void test(const std::string& str) {
auto* head = createLinkedList(str);
std::cout << "isPalindrome(" << str << ") = " << isPalindrome(head, getLength(head)) << std::endl;
destroyLinkedList(head);
}
int main() {
test("tacocat");
test("naan");
test("palindrome");
test("p");
test("");
return 0;
}