-
Notifications
You must be signed in to change notification settings - Fork 1k
/
DoublyLinkedList.js
331 lines (265 loc) · 8.99 KB
/
DoublyLinkedList.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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
/*
A doubly linked list is a linked data structure that consists of a set of sequentially linked records called nodes. Each node contains three fields: two link fields (references to the previous and to the next node in the sequence of nodes) and one data field.
The beginning and ending nodes' previous and next links, respectively, point to some kind of terminator, typically a sentinel node or null, to facilitate traversal of the list.
Below, is the implementation of doubly linked list. In this program, user can provide a choice to perform operations on a Doubly Linked List. It is created using a ES6 class syntax.
prompt & colors are node packages for taking user input and displaying text in different colors respectively.
*/
const prompt = require("prompt-sync")({ sigint: true });
const colors = require("colors");
// Setting the Color schema
colors.setTheme({
display: "green",
insert: "white",
delete: "red",
leave: "yellow",
end: "rainbow",
wrong: "america",
});
// Creating the node class to create nodes
class Node {
constructor(value, next = null, prev = null) {
this.value = value,
this.next = next,
this.prev = prev
}
}
// Creating Doubly Linked List class to perform operations
class DoublyLinkedList {
constructor(value) {
this.head = {
value: value,
prev: null,
next: null,
};
this.tail = this.head;
this.length = 1;
}
// Looping to a given index in doubly Linked List
traverseToIndex(index) {
let counter = 1;
let currentNode = this.head;
while (counter !== index) {
currentNode = currentNode.next;
counter++;
}
return currentNode;
}
// Case : The very "first node" insertion in doubly linked list
firstNode(value) {
let newNode = new Node(value);
this.head = newNode;
this.head.next = null;
this.head.prev = null;
this.tail = this.head;
this.length++;
return this;
}
// Appending (at the end) node in doubly linked list
append(value) {
if (!this.head) return this.firstNode(value);
const newNode = new Node(value);
this.tail.next = newNode;
newNode.prev = this.tail;
this.tail = newNode;
this.length++;
return this;
}
// Prepending ( at the beginning ) of doubly linked list
prepend(value) {
if (!this.head) return this.firstNode(value);
const newNode = new Node(value);
this.head.prev = newNode;
newNode.next = this.head;
this.head = newNode;
this.length++;
return this;
}
// Inserting node at a given position in doubly linked list
insert(index, value) {
if (index === 1) return this.prepend(value);
if (index > this.length) return this.append(value);
const newNode = new Node(value);
if (index === this.length) {
newNode.prev = this.tail.prev;
this.tail.prev.next = newNode;
this.tail.prev = newNode;
newNode.next = this.tail;
this.length++;
return this;
}
let currentNode = this.traverseToIndex(index - 1);
newNode.next = currentNode.next;
currentNode.next.prev = newNode;
newNode.prev = currentNode;
currentNode.next = newNode;
this.length++;
return this;
}
// Removing the element node form doubly linked list
remove(index) {
if (this.length === 1) { // If length of doublyLL is one
this.head = null;
this.tail = this.head;
} else if (index === 1) { // If entered position is one
this.head = this.head.next;
this.head.prev = null;
} else if (index === this.length) { // If entered postion is equal to the length of doublyLL
this.tail = this.tail.prev;
this.tail.next = null;
} else { // for the rest of cases
//Traverse to that particular index of element
let currentNode = this.traverseToIndex(index - 1);
currentNode.next.next.prev = currentNode;
currentNode.next = currentNode.next.next;
}
this.length--;
return this;
}
// Reverse the doubly linked list
reverse() {
// if only one node is present
if (!this.head.next) {
return this.head;
}
let first = this.head;
this.tail = this.head;
let second = first.next;
// Start looping & changing the prev & next pointer of nodes
while (second) {
const temp = second.next;
second.prev = second.next;
second.next = first;
first = second;
second = temp;
}
this.head.prev = this.head.next;
this.head.next = null;
this.head = first;
}
// Displaying all the nodes of doubly linked list
printList() {
let array = [];
let currentNode = this.head;
while (currentNode !== null) {
array.push(currentNode.value);
currentNode = currentNode.next;
}
return array;
}
}
// Instantiating the doubly Linked List class
const myDoublyLinkedList = new DoublyLinkedList(22);
let choice = 0;
let value, index;
// Asking user input for performing operations on doubly Linked List
do {
console.log("\nWelcome to the Doubly Linked List Show");
console.log("Follow the instructions to get in the show");
console.log("0. To exit without doing anything".yellow);
console.log("1. Display the Doubly Linked List".display);
console.log("2. Append element in the Doubly Linked List".insert);
console.log("3. Prepend element in the Doubly Linked List".insert);
console.log("4. Insert anywhere in between the Doubly Linked List".insert);
console.log("5. Delete element from Doubly Linked List".delete);
console.log("6. Reverse the Doubly Linked List".display);
choice = +prompt("Enter your choice - ");
switch (choice) {
case 0:
console.log("Hmm, matter of choice!\n".rainbow);
return;
case 1:
console.log("Doubly Linked List - ", myDoublyLinkedList.printList());
break;
case 2:
value = +prompt("Enter Value to Append element - ");
myDoublyLinkedList.append(value);
console.log(
"After Append Doubly Linked List - ",
myDoublyLinkedList.printList()
);
break;
case 3:
value = +prompt("Enter Value to Prepend element - ");
myDoublyLinkedList.prepend(value);
console.log(
"After Prepend Doubly Linked List - ",
myDoublyLinkedList.printList()
);
break;
case 4:
value = +prompt("Enter Value to Insert element - ");
index = +prompt("Enter Position to Insert element - ");
if (index <= 0)
return console.log("You know this is wrong, Bbye!\n".wrong);
myDoublyLinkedList.insert(index, value);
console.log(
"After Insertion Doubly Linked List - ",
myDoublyLinkedList.printList()
);
break;
case 5:
if (myDoublyLinkedList.length === 0) {
return console.log("404, you can't remove anything from void".wrong);
}
index = +prompt("Enter position of element - ");
if (index <= 0 || index > myDoublyLinkedList.length)
return console.log("You know this is wrong, Bbye!\n".wrong);
myDoublyLinkedList.remove(index);
console.log( "After Deletion Doubly Linked List - ", myDoublyLinkedList.printList());
break;
case 6:
if (myDoublyLinkedList.length === 0) {
return console.log("404, well DLL is empty".wrong);
}
myDoublyLinkedList.reverse();
console.log("Reversed Doubly Linked List - ", myDoublyLinkedList.printList());
break;
default:
console.log("You know this is wrong, Bbye!\n".wrong);
return;
}
} while (choice !== 0);
// Sample I/O of the above program -
/*
> node DoublyLinkedList
Welcome to the Doubly Linked List Show
Follow the instructions to get in the show
0. To exit without doing anything
1. Display the Doubly Linked List
2. Append element in the Doubly Linked List
3. Prepend element in the Doubly Linked List
4. Insert anywhere in between the Doubly Linked List
5. Delete element from Doubly Linked List
6. Reverse the Doubly Linked List
Enter your choice - 1
Doubly Linked List - [ 22 ]
Welcome to the Doubly Linked List Show
Follow the instructions to get in the show
0. To exit without doing anything
1. Display the Doubly Linked List
2. Append element in the Doubly Linked List
3. Prepend element in the Doubly Linked List
4. Insert anywhere in between the Doubly Linked List
5. Delete element from Doubly Linked List
Enter your choice - 3
Enter Value to Prepend element - 23
6. Reverse the Doubly Linked List
After Prepend Doubly Linked List - [ 23, 22 ]
Welcome to the Doubly Linked List Show
Follow the instructions to get in the show
0. To exit without doing anything
1. Display the Doubly Linked List
2. Append element in the Doubly Linked List
3. Prepend element in the Doubly Linked List
4. Insert anywhere in between the Doubly Linked List
5. Delete element from Doubly Linked List
Enter your choice - 5
Enter position of element - 2
6. Reverse the Doubly Linked List
After Deletion Doubly Linked List - [ 23 ]
( add few elements > 21, 45, 62, 12, 40 )
Enter your choice - 1
Doubly Linked List - [23, 21, 45, 62, 12, 40]
Enter your choice - 6
Reversed Doubly Linked List - [40, 12, 62, 45, 21, 23]
*/