class版本

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
// 定義一個 Queue(隊列)類別
class Queue {
constructor() {
this.items = []; // 使用陣列來儲存隊列中的元素
}

// 將元素添加到隊列尾部
enqueue(element) {
this.items.push(element);
}

// 從隊列中移除並返回第一個元素
dequeue() {
if (this.isEmpty()) {
return "隊列已經空了";
}
return this.items.shift();
}

// 返回隊列中的第一個元素
front() {
if (this.isEmpty()) {
return "隊列為空";
}
return this.items[0];
}

// 檢查隊列是否為空
isEmpty() {
return this.items.length === 0;
}

// 返回隊列的長度
size() {
return this.items.length;
}

// 清空隊列
clear() {
this.items = [];
}
}

// 使用範例
const queue = new Queue();
console.log(queue.isEmpty()); // true

queue.enqueue("John");
queue.enqueue("Jane");
queue.enqueue("Bob");
console.log(queue.size()); // 3
console.log(queue.isEmpty()); // false
console.log(queue.front()); // John

console.log(queue.dequeue()); // John
console.log(queue.dequeue()); // Jane
console.log(queue.size()); // 1

创建一个列队

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
let Queue = function(){
this.items = []; // 使用陣列來儲存隊列中的元素
// 將元素添加到隊列尾部
enqueue = (element) =>{
this.items.push(element);
}
// 從隊列中移除並返回第一個元素
dequeue = () =>{
if (isEmpty()) {
return "列队为空";
}
return this.items.shift();
}
// 返回隊列中的第一個元素
front = () =>{
if (isEmpty()) {
return "列队为空";
}
return this.items[0];
}
// 檢查隊列是否為空
isEmpty = () => {
console.log(this);
return this.items.length === 0;
}
// 返回隊列的長度
size = () =>{
return this.items.length;
}
// 清空隊列
clear = () =>{
this.items = [];
}
return {
enqueue,
dequeue,
front,
isEmpty,
size,
clear
}
}

// 使用範例
const queue = new Queue();
console.log(queue.isEmpty()); // true

queue.enqueue("John");
queue.enqueue("Jane");
queue.enqueue("Bob");
console.log(queue.size()); // 3
console.log(queue.isEmpty()); // false
console.log(queue.front()); // John

console.log(queue.dequeue()); // John
console.log(queue.dequeue()); // Jane
console.log(queue.size()); // 1

vue版本带指针的列队

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
Queue:function(){
this.items = []; // 使用陣列來儲存隊列中的元素
this.pointer = 0;// 指针 通过指针更新数组内的数据
// 將元素添加到隊列尾部
enqueue = (element) =>{
this.items.push(element);
}
//将数组添加到指针位置
enqueuePointer = (element,num) =>{
setPointer(num);
this.items[this.pointer] = element;
}
// 從隊列中移除並返回第一個元素
dequeue = () =>{
if (isEmpty()) {
return "列队为空";
}
return this.items.shift();
}
// 從隊列中移除並返回最后一个元素
dequeueList = () =>{
if (isEmpty()) {
return "列队为空";
}
return this.items.pop();
}
// 返回隊列中的第一個元素
front = () =>{
if (isEmpty()) {
return "列队为空";
}
return this.items[0];
}
// 檢查隊列是否為空
isEmpty = () => {
return this.items.length === 0;
}
// 返回隊列的長度
size = () =>{
return this.items.length;
}
autoDelete = ()=>{
setInterval(()=>{
if(this.items.length > 30){
dequeueList()
}
},1500)
}
// 返回所有数据
allItem = () =>{
return this.items;
}
// 清空隊列
clear = () =>{
this.items = [];
}
//设置个指针
setPointer = (num) =>{
this.pointer = this.pointer < num ? this.pointer + 1 : 0;
}
return {
enqueue,
enqueuePointer,
dequeue,
dequeueList,
front,
isEmpty,
size,
clear,
allItem,
autoDelete
}
}