-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQueue.js
More file actions
62 lines (59 loc) · 1.29 KB
/
Queue.js
File metadata and controls
62 lines (59 loc) · 1.29 KB
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
// similar to stack => first in first out
function Queue() {
collection = [];
this.print = function () {
console.log(collection);
};
this.enqueue = function (element) {
collection.push(element);
};
this.dequeue = function () {
return collection.shift();
};
this.front = function () {
return collection[0];
};
this.size = function () {
return colleciton.length;
};
this.isEmpty = function () {
return collection.length === 0;
};
}
//PriorityQueue
function PriorityQueue() {
let collection = [];
this.printCollection = function () {
console.log(collection);
};
this.enqueue = function (element) {
if (this.isEmpty()) {
collection.push(element);
} else {
let added = false;
for (let i = 0; i < collection.length; i++) {
if (element[i] < collection[i][1]) {
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;
};
}