-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueue-object-weakmap.js
93 lines (80 loc) · 1.7 KB
/
queue-object-weakmap.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
const items = new WeakMap();
const begin = new WeakMap();
const end = new WeakMap();
class Queue {
constructor() {
// STORE DATA IN AN OBJECT
items.set(this, {});
// OBJECT KEY USED TO KEEY TRACK OF THE BEGINNING OF THE QUEUE
begin.set(this, 0);
// OBJECT KEY USED TO KEEY TRACK OF THE ENGING OF THE QUEUE
end.set(this, 0);
}
/**
* Add an item to the end
* @param {*} item
* @time complexity: O(1)
* @space complexity: O(1)
*/
enqueue(item) {
items.get(this)[end.get(this)] = item;
end.set(this, end.get(this) + 1);
}
/**
* Remove an item from the front
* @return {*}
* @time complexity: O(1)
* @space complexity: O(1)
*/
dequeue() {
if (this.isEmpty()) {
return undefined;
}
const _begin = begin.get(this);
const item = items.get(this)[_begin];
delete items.get(this)[_begin];
begin.set(this, _begin + 1);
return item;
}
/**
* Get the first item
* @return {*}
* @time complexity: O(1)
* @space complexity: O(1)
*/
peek() {
if (this.isEmpty()) {
return undefined;
}
return items.get(this)[begin.get(this)];
}
/**
* Get number of items
* @return {number}
* @time complexity: O(1)
* @space complexity: O(1)
*/
size() {
return end.get(this) - begin.get(this);
}
/**
* Check whether or not it contains no items
* @return {boolean}
* @time complexity: O(1)
* @space complexity: O(1)
*/
isEmpty() {
return this.size() === 0;
}
/**
* Remove all items
* @time complexity: O(1)
* @space complexity: O(1)
*/
clear() {
items.set(this, {});
begin.set(this, 0);
end.set(this, 0);
}
}
export default Queue;