-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathday8-queue.js
58 lines (50 loc) · 998 Bytes
/
day8-queue.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
class QueueNode {
constructor(data, next) {
this.data = data
this.next = next
}
}
class Queue {
constructor() {
this.front = null
this.tail = null
}
isEmpty() {
return this.front === null
}
enqueue(value) {
let node = new QueueNode(value)
if (this.isEmpty()) {
this.front = node
this.tail = node
} else {
// 讓尾巴節點先指向node新節點
this.tail.next = node
// 讓新節點變成新的尾巴節點
this.tail = node
}
}
dequeue() {
let result = this.front.data
if (this.isEmpty()) {
return null
}
if (this.front === this.tail) {
this.front = null
this.tail = null
} else {
// 使原本前面第二個節點變成第一個節點
this.front = this.front.next
}
return result
}
}
let qq = new Queue()
qq.enqueue("A")
qq.enqueue("B")
qq.enqueue("C")
qq.enqueue("D")
qq.enqueue("E")
while (!qq.isEmpty()) {
console.log(qq.dequeue())
}