-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathPalindrome.js
62 lines (51 loc) · 1.24 KB
/
Palindrome.js
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
/*
Asked by - Microsoft, Amazon, Snapdeal.
Given a singly linked list of integers,
Your task is to complete the function isPalindrome that returns true
if the given list is palindrome, else returns false.
*/
// TODO :
// Create a new copy of the linked list.
// Reverse the newly created linked list.
// Compare the original linked list with the reversed linked list.
function Node(data){
this.data = data
this.next = null
}
Node.prototype.add = function(data){
const end = new Node(data)
let current = this
while(current.next !== null)
current = current.next
current.next = end
return end
}
const isPalindrome = (list) => {
const reversed = reverseAndClone(list)
return isEqual(list, reversed)
}
const reverseAndClone = node => {
let head = null
while(node){
const copy = new Node(node.data)
copy.next = head
head = copy
node = node.next
}
return head
}
const isEqual = (one, two) => {
while(one && two){
if(one.data !== two.data)
return false
one = one.next
two = two.next
}
return one === null && two === null
}
const list = new Node(5)
list.add(4)
list.add(3)
list.add(4)
list.add(5)
isPalindrome(list) // true