-
Notifications
You must be signed in to change notification settings - Fork 0
/
PriorityQueue.js
48 lines (46 loc) · 1.07 KB
/
PriorityQueue.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
function PriorityQueue() {
const collection = [];
this.printCollection = function () {
console.log(collection);
};
this.enqueue = function (element) {
if (this.isEmpty()) {
collection.push(element);
} else {
var added = false;
for (var i = 0; i < collection.length; i++) {
if (element[1] < collection[i][1]) {
// checking priorities
collection.splice(i, 0, element);
added = true;
break;
}
}
if (!added) {
collection.push(element);
}
}
};
this.dequeue = function () {
let value = collection.shift();
return value[0];
};
this.front = function () {
return collection[0];
};
this.size = function () {
return collection.length;
};
this.isEmpty = function () {
return collection.length === 0;
};
}
// USE EXAMPLE
// const pq = new PriorityQueue();
// pq.enqueue(["Beau Carnes", 2]);
// pq.enqueue(["Quincy Larson", 3]);
// pq.enqueue(["John Doe", 1]);
// pq.printCollection();
// pq.dequeue();
// pq.front();
// pq.printCollection();