-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueue-object.js
87 lines (78 loc) · 1.74 KB
/
queue-object.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
// This method will have constant time complexity
class CircularQueue {
constructor(capacity) {
this.items = new Array(capacity);
this.rear = -1;
this.front = -1;
this.currentLength = 0;
this.capacity = capacity;
}
isFull() {
return this.currentLength === this.capacity;
}
isEmpty() {
return this.currentLength === 0;
}
size() {
return this.currentLength;
}
enqueue(item) {
if (!this.isFull()) {
this.rear = (this.rear + 1) % this.capacity;
this.items[this.rear] = item;
this.currentLength += 1;
if (this.front === -1) {
this.front = this.rear;
}
}
}
dequeue() {
if (this.isEmpty()) {
return null;
}
const item = this.items[this.front];
this.items[this.front] = null;
this.front = (this.front + 1) % this.capacity;
this.currentLength -= 1;
if (this.isEmpty()) {
this.front = -1;
this.rear = -1;
}
return item;
}
peek() {
if (!this.isEmpty()) {
return this.items[this.front];
}
return null;
}
print() {
if (this.isEmpty()) {
console.log("Queue is empty");
} else {
let i;
let str = "";
for (i = this.front; i !== this.rear; i = (i + 1) % this.capacity) {
str += this.items[i] + " ";
}
str += this.items[i];
console.log(str);
}
}
}
const queue = new CircularQueue(5);
console.log(queue.isEmpty());
queue.enqueue(10);
queue.enqueue(20);
queue.enqueue(30);
queue.enqueue(40);
queue.enqueue(50);
// console.log(queue.size());
// queue.print();
// console.log(queue.isFull());
console.log(queue.dequeue());
console.log(queue.dequeue());
// console.log(queue.peek());
// queue.print();
// queue.enqueue(60);
// queue.print();