-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqueue.js
More file actions
50 lines (50 loc) · 1.02 KB
/
queue.js
File metadata and controls
50 lines (50 loc) · 1.02 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
class queue{
constructor(){
this.queue = [];
this.size = 0;
}
enqueue(item){
this.queue.push(item);
this.size++;
}
dequeue(){
if(this.size > 0){
this.size--;
return this.queue.shift();
}
}
peek(){
return this.queue[0];
}
isEmpty(){
return this.size == 0;
}
clear(){
this.queue = [];
this.size = 0;
}
print(){
console.log(this.queue);
}
}
module.exports={
structure:queue,
description:"Queue",
complexity:{
enqueue:"O(1)",
dequeue:"O(1)",
peek:"O(1)",
isEmpty:"O(1)",
clear:"O(1)",
print:"O(n)"
},
methods:{
enqueue:"Inserts an element into the queue",
dequeue:"Deletes an element from the queue",
peek:"Returns the first element in the queue",
isEmpty:"Checks if the queue is empty",
clear:"Clears the queue",
print:"Prints the queue"
},
category:"Queue"
};