-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathalternateQueue.js
84 lines (71 loc) · 1.93 KB
/
alternateQueue.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
/**
* Alternate Queue Combination
* @author MadhavBahl
* @date 15/02/2019
*/
class Queue {
constructor (size) {
this.capacty = size;
this.data = [];
this.frontIndex = 0;
this.rearIndex = 0;
}
front () {
return data[this.frontIndex];
}
rear () {
return data[this.rearIndex];
}
enqueue (element) {
if (this.rearIndex >= this.capacty) {
console.log ("Overflow!");
return -1;
}
this.data.unshift (element);
// console.log (element + ' added to the queue');
this.rearIndex++;
}
dequeue (element) {
if (this.rearIndex === 0) {
console.log ("Underflow!");
return -1;
}
// console.log (this.data[this.rearIndex -1] + ' has been removed from the queue');
this.rearIndex--;
return this.data.pop ();
}
displayQueue () {
let toBeDisplayed = '-> ';
for (let element of this.data) {
toBeDisplayed += element + ' -> ';
}
console.log (toBeDisplayed);
}
}
const combine = (q1, q2) => {
let toBeAdded;
const combinedQueue = new Queue (q1.rearIndex + q2.rearIndex);
while (!(q1.rearIndex === 0 || q2.rearIndex === 0)) {
toBeAdded = q1.dequeue();
combinedQueue.enqueue (toBeAdded);
toBeAdded = q2.dequeue();
combinedQueue.enqueue (toBeAdded);
}
console.log ("\n/* ===== Displaying Combined Queue ===== */");
combinedQueue.displayQueue();
}
const firstQ = new Queue (4);
firstQ.enqueue (1);
firstQ.enqueue (2);
firstQ.enqueue (3);
firstQ.enqueue (4);
const secondQ = new Queue (4);
secondQ.enqueue (5);
secondQ.enqueue (6);
secondQ.enqueue (7);
secondQ.enqueue (8);
console.log ("\n/* ===== Displaying Queue 1 ===== */");
firstQ.displayQueue();
console.log ("\n/* ===== Displaying Queue 2 ===== */");
secondQ.displayQueue();
combine (firstQ, secondQ);