-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqueue.js
More file actions
64 lines (55 loc) · 1.06 KB
/
queue.js
File metadata and controls
64 lines (55 loc) · 1.06 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
63
64
function Queue() {
this.arr = [];
this.head = -1;
this.tail = -1;
this.init = init;
this.enqueue = enqueue;
this.dequeue = dequeue;
this.size = size;
this.toString = toString;
}
function init() {
this.arr = [];
this.head = -1;
this.tail = -1;
}
function enqueue(e) {
if (this.head == -1) {
this.head = 0;
this.tail = 0;
this.arr[this.tail] = e;
return ;
}
this.arr[++this.tail] = e ;
}
function dequeue(e) {
if (this.size() == 0) {
return NaN;
}
r = this.arr[this.head];
if (this.size() == 1) {
this.init();
}else {
this.arr = this.arr.slice(1,this.size());
}
return r;
}
function size() {
return this.arr.length;
}
function toString() {
return this.arr.toString();
}
q = new Queue();
q.enqueue(1);
q.enqueue(2);
q.enqueue(3);
q.enqueue(4);
console.log(q.toString());
console.log(q.dequeue());
console.log(q.toString());
console.log(q.dequeue());
console.log(q.toString());
q.init();
console.log(q.toString());
q.dequeue();