-
Notifications
You must be signed in to change notification settings - Fork 0
/
Queue.js
111 lines (58 loc) · 1.65 KB
/
Queue.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
// ====================================QUEUE====================================
class Node{
constructor(data){
this.data = data;
this.next = null;
}
}
class Queue{
constructor(){
this.front = null;
this.rear = null;
}
displayQueue(){
if(this.front === null){
console.log("The given Queue is Empty.");
return;
}
let currentNode = this.front;
while(currentNode!= null){
console.log(currentNode.data + " ↑");
currentNode = currentNode.next;
}
console.log("Completed printing the Queue");
}
enqueue(data){
let newNode = new Node(data);
if(this.rear === null){
this.rear = newNode; // Setting the first Node as front and rear
this.front = newNode; // Setting the first Node as front and rear
return;
}
// If the queue is not empty, add the new Node to the rear of the queue
this.rear.next = newNode;
// Update the rear to be the new Node, making it the new last element in the queue
this.rear = newNode;
}
dequeue(){
if(this.front === null){
console.log("The given Queue is Empty.");
return;
}
const removedElement = this.front.data;
this.front = this.front.next;
if(this.front == null){
this.rear = null;
}
console.log("Removed element from the Queue:", removedElement);
return removedElement; // Return the removed element
}
}
// ========================Checking codes========================
let Queue1 = new Queue();
Queue1.enqueue(10);
Queue1.enqueue(20);
Queue1.enqueue(30);
Queue1.displayQueue();
Queue1.dequeue();
Queue1.displayQueue();