forked from HarshCasper/NeoAlgo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
CircularSinglyLinkedList.js
249 lines (199 loc) · 6.82 KB
/
CircularSinglyLinkedList.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
/*
In a circular Singly linked list, the last node of the list contains a pointer to the first node of the list.
We can have circular singly linked list as well as circular doubly linked list.
We traverse a circular singly linked list until we reach the same node where we started.
The circular singly liked list has no beginning and no ending. There is no null value present in the next part of any of the nodes.
In this program, user can provide a choice to perform operations on a Circular 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 Circular Singly Linked List class to perform operations
class CircularLinkedList {
constructor(value) {
this.head = null;
this.tail = this.head;
this.length = 0;
}
// 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;
}
// Handling the very first node of Linked List
firstNode(value) {
let newNode = new Node(value);
this.head = newNode;
this.head.next = this.head;
this.tail = this.head;
this.length++;
return this;
}
// Appending ( at the end ) node in Linked List
append(value) {
if (!this.head) return this.firstNode(value);
let newNode = new Node(value);
this.tail.next = newNode;
newNode.next = this.head;
this.tail = newNode;
this.length++;
return this;
}
// Prepending ( at the beginning ) of Linked List
prepend(value) {
if (!this.head) return this.firstNode(value);
let newNode = new Node(value);
newNode.next = this.head;
this.head = newNode;
this.tail.next = this.head;
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 {
let newNode = new Node(value);
let previousNode = this.traverseToIndex(index - 1);
newNode.next = previousNode.next;
previousNode.next = newNode;
}
this.length++;
return this;
}
// Delete a node from circular SLL
remove(index) {
if (index === 1) {
this.tail.next = this.head.next;
this.head = this.head.next;
this.length--;
return this;
} else {
let previousNode = this.traverseToIndex(index - 1); // traverse to that node
if (index === this.length) {
previousNode.next = this.head;
this.length--;
return this;
}
previousNode.next = previousNode.next.next;
this.length--;
return this;
}
}
// Displaying all the nodes of Linked List
printList() {
let currentNode = this.head;
let data = [];
while (currentNode.next !== this.head) {
data.push(currentNode.value);
currentNode = currentNode.next;
}
data.push(currentNode.value);
return data;
}
}
// Instantiating the Circular Singly Linked List class
const myCircularLinkedList = new CircularLinkedList();
let choice = 0;
let value, index;
// Asking user input for performing operations on Linked List
do {
console.log("\nWelcome to the Circular Singly 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 Circular Singly Linked List".display);
console.log("2. Append element in the Circular Singly Linked List".insert);
console.log("3. Prepend element in the Circular Singly Linked List".insert);
console.log("4. Insert anywhere in between the Circular Singly Linked List".insert);
console.log("5. Delete element from the Circular Singly Linked List".delete);
choice = +prompt("Enter your choice - ");
switch (choice) {
case 0:
console.log("Hmm, matter of choice!\n".rainbow);
return;
case 1:
if (myCircularLinkedList.length === 0) console.log("Empty LL []");
else console.log("Linked List - ", myCircularLinkedList.printList());
break;
case 2:
value = +prompt("Enter Value to Append element - ");
myCircularLinkedList.append(value);
console.log("After Append Linked List - ", myCircularLinkedList.printList());
break;
case 3:
value = +prompt("Enter Value to Prepend element - ");
myCircularLinkedList.prepend(value);
console.log("After Prepend Linked List - ", myCircularLinkedList.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);
myCircularLinkedList.insert(index, value);
console.log("After Insertion Linked List - ", myCircularLinkedList.printList());
break;
case 5:
if (myCircularLinkedList.length === 0) {
return console.log("404, you can't remove anything from void".wrong);
}
index = +prompt("Enter position of element - ");
if (index <= 0 || index > myCircularLinkedList.length)
return console.log("You know this is wrong, Bbye!\n".wrong);
myCircularLinkedList.remove(index);
console.log("After Deletion Linked List - ", myCircularLinkedList.printList());
break;
default:
console.log("You know this is wrong, Bbye!\n".wrong);
return;
}
} while (choice !== 0);
/*
> node CircularSinglyLinkedList
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 the Circular Singly Linked List
Enter your choice - 2
Enter Value to Append element - 21
After Append Linked List - [ 21 ]
4. Insert anywhere in between the Linked List
Enter your choice - 4
Enter Value to Insert element - 12
Enter Position to Insert element - 1
After Insertion Linked List - [ 12, 21 ]
3. Prepend element in the Linked List
Enter your choice - 3
Enter Value to Prepend element - 90
After Prepend Linked List - [ 90, 12, 21 ]
5. Delete element from the Circular Singly Linked List
Enter your choice - 5
Enter position of element - 2
After Deletion Linked List - [90, 21]
*/