forked from HarshCasper/NeoAlgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DynamicLinkedList.js
260 lines (206 loc) · 6.39 KB
/
DynamicLinkedList.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
/*
A singly linked list is collection of nodes wherein each node has 2 parts: data and a pointer to the next node.
The list terminates with a node pointing at null. Below is the program to add nodes dynamically in Singly Linked List.
In this program, user can provide a choice to perform operations on a Singly 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) {
this.value = value;
this.next = next;
}
}
// Creating Linked List class to perform operations
class LinkedList {
constructor(value) {
this.head = {
value: value,
next: null,
};
this.tail = this.head;
this.length = 1;
}
// Looping to a given index in Linked List
traverseToIndex(index) {
let counter = 1;
let currentNode = this.head;
while (counter !== index) {
currentNode = currentNode.next;
counter++;
}
return currentNode;
}
// Appending (at the end) node in linked list
append(value) {
const newNode = new Node(value);
this.tail.next = newNode;
this.tail = newNode;
this.length++;
return this;
}
// Prepending ( at the beginning ) of linked list
prepend(value) {
const newNode = new Node(value);
newNode.next = this.head;
this.head = newNode;
this.length++;
return this;
}
// Inserting node at a given position in linked list
insert(index, value) {
if (index === 1) return this.prepend(value);
else if (index > this.length) return this.append(value);
else {
const newNode = new Node(value);
let currentNode = this.traverseToIndex(index - 1);
newNode.next = currentNode.next;
currentNode.next = newNode;
this.length++;
}
}
// Removing the element node form linked list
remove(index) {
if (index === 1) {
this.head = this.head.next;
this.length--;
return;
}
// Traversing to that particular node element
let currentNode = this.traverseToIndex(index - 1);
if (index === this.length) {
currentNode.next = null;
this.length--;
return this;
}
currentNode.next = currentNode.next.next;
this.length--;
return this;
}
// Reverse the linked list
reverse() {
if (!this.head.next) {
return this.head;
}
let first = this.head;
this.tail = this.head;
let second = first.next;
while (second) {
const temp = second.next;
second.next = first;
first = second;
second = temp;
}
this.head.next = null;
this.head = first;
return this;
}
// Displaying all the nodes of linked list
printList() {
const array = [];
let currentNode = this.head;
while (currentNode !== null) {
array.push(currentNode.value);
currentNode = currentNode.next;
}
return array;
}
}
// Instantiating the Linked List class
const myLinkedList = new LinkedList(10);
let choice = 0;
let value, index;
// Asking user input for performing operations on Linked List
do {
console.log("\nWelcome to the 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 Linked List".display);
console.log("2. Append element in the Linked List".insert);
console.log("3. Prepend element in the Linked List".insert);
console.log("4. Insert at any position in the Linked List".insert);
console.log("5. Delete element from Linked List".delete);
console.log("6. Reverse a 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("Linked List - ", myLinkedList.printList());
break;
case 2:
value = +prompt("Enter Value to Append element - ");
myLinkedList.append(value);
console.log("After Append Linked List - ", myLinkedList.printList());
break;
case 3:
value = +prompt("Enter Value to Prepend element - ");
myLinkedList.prepend(value);
console.log("After Prepend Linked List - ", myLinkedList.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);
myLinkedList.insert(index, value);
console.log("After Insertion Linked List - ", myLinkedList.printList());
break;
case 5:
if (myLinkedList.length === 0) {
return console.log("404, you can't remove anything from void".wrong);
}
index = +prompt("Enter position of element - ");
if (index <= 0 || index > myLinkedList.length)
return console.log("You know this is wrong, Bbye!\n".wrong);
myLinkedList.remove(index);
console.log("After Deletion Linked List - ", myLinkedList.printList());
break;
case 6:
if (myLinkedList.length === 0) {
return console.log("Can't revert, Empty Linked List".wrong);
}
myLinkedList.reverse();
console.log("Reversal of Linked List - ", myLinkedList.printList());
break;
default:
console.log("You know this is wrong, Bbye!\n".wrong);
return;
}
} while (choice !== 0);
// Sample I/O of the above program -
/*
Welcome to the Linked List Show
Follow the instructions to get in the show
0. To exit without doing anything
1. Display the Linked List
2. Append element in the Linked List
3. Prepend element in the Linked List
4. Insert anywhere in between the Linked List
5. Delete element from Linked List
6. Reverse a Linked List
Enter your choice - 2
Enter Value to Append element - 43
After Append Linked List - [10, 43]
0. To exit without doing anything
1. Display the Linked List
2. Append element in the Linked List
3. Prepend element in the Linked List
4. Insert anywhere in between the Linked List
5. Delete element from Linked List
6. Reverse a Linked List
Enter your choice - 6
Reversal of Linked List - [43, 10]
*/