-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpalindrome-linked-list.cpp
94 lines (81 loc) · 1.76 KB
/
palindrome-linked-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
// https://leetcode.com/problems/palindrome-linked-list/
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode() : val(0), next(nullptr) {}
* ListNode(int x) : val(x), next(nullptr) {}
* ListNode(int x, ListNode *next) : val(x), next(next) {}
* };
*/
// WITH EXTRA MEMORY
// TIME => O(n), SPACE=> O(n)
class Solution
{
public:
bool isPalindrome(ListNode *head)
{
vector<int> nodesArray;
while (head != NULL)
{
nodesArray.push_back(head->val);
head = head->next;
}
int leftPointer = 0;
int rightPointer = nodesArray.size() - 1;
while (leftPointer <= rightPointer)
{
if (nodesArray[leftPointer] != nodesArray[rightPointer])
{
return false;
}
leftPointer++;
rightPointer--;
}
return true;
}
};
// WITHOUT EXTRA MEMORY
// TIME => O(n), SPACE=> O(1)
class Solution
{
public:
bool isPalindrome(ListNode *head)
{
// Step-1: Find Middle of the Linked List
// Step-2: Reverse Second Half of the Linked List
// Step-3: Check Palindrome
ListNode *slowPointer = head;
ListNode *fastPointer = head;
// Step-1
while (fastPointer && fastPointer->next)
{
slowPointer = slowPointer->next;
fastPointer = fastPointer->next->next;
}
// Step-2
ListNode *previousElement = NULL;
ListNode *tempNode = NULL;
while (slowPointer)
{
tempNode = slowPointer->next;
slowPointer->next = previousElement;
previousElement = slowPointer;
slowPointer = tempNode;
}
// Step-3
ListNode *leftPointer = head;
ListNode *rightPointer = previousElement;
while (rightPointer)
{
if (leftPointer->val != rightPointer->val)
{
return false;
}
leftPointer = leftPointer->next;
rightPointer = rightPointer->next;
}
return true;
}
};