-
-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathpalindromeCheck.js
62 lines (52 loc) · 1.47 KB
/
palindromeCheck.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
60
61
62
class Node {
constructor(value) {
this.value = value;
this.next = null;
this.prev = null;
}
}
class DoublyLinkedList {
constructor() {
this.head = null;
this.tail = null;
this.length = 0;
}
push(value) {
const newNode = new Node(value);
if(!this.head) {
this.head = newNode;
this.tail = newNode;
} else {
this.tail.next = newNode;
newNode.prev = this.tail;
this.tail = newNode;
}
this.length++;
return this;
}
isPalindrome() {
if(this.length < 2) return true;
let forwardNode = this.head;
let backwardNode = this.tail;
for(let i=0; i < Math.floor(this.length/2); i++) {
if (forwardNode.value !== backwardNode.value) return false;
forwardNode = forwardNode.next;
backwardNode = backwardNode.prev;
}
return true;
}
}
let myDoublyLinkedList1 = new DoublyLinkedList();
myDoublyLinkedList1.push(1);
myDoublyLinkedList1.push(2);
myDoublyLinkedList1.push(3);
myDoublyLinkedList1.push(2);
myDoublyLinkedList1.push(1);
let myDoublyLinkedList2 = new DoublyLinkedList();
myDoublyLinkedList2.push(1);
myDoublyLinkedList2.push(2);
myDoublyLinkedList2.push(3);
myDoublyLinkedList2.push(4);
myDoublyLinkedList2.push(5);
console.log(myDoublyLinkedList1.isPalindrome());
console.log(myDoublyLinkedList2.isPalindrome());