-
Notifications
You must be signed in to change notification settings - Fork 1
/
queue.ts
90 lines (74 loc) · 2.11 KB
/
queue.ts
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
88
89
90
export default class Queue {
items: string[];
constructor() {
this.items = [];
}
add(element: string) {
this.items.push(element.toLowerCase());
}
advance() {
return this.isEmpty()
? "A fila está vazia"
: this.items.shift();
}
isEmpty() {
return this.items.length === 0;
}
next() {
return this.isEmpty()
? "A fila está vazia"
: this.items[2].split("")[0].toUpperCase() + this.items[2].slice(1);
}
clear() {
this.items = [];
return "Fila limpa com sucesso";
}
moveToEnd(element: string) {
const nameToLowerCase = element.toLowerCase();
const index = this.items.indexOf(nameToLowerCase);
if (index > -1) {
this.items.splice(index, 1); // Remove from current position
this.items.push(nameToLowerCase); // Re-add to the end
} else {
return "Esta pessoa não foi encontrada na fila";
}
}
remove(element: string): string {
const nameToLowerCase = element.toLowerCase();
const index = this.items.indexOf(nameToLowerCase);
if (index > -1) {
this.items.splice(index, 1);
return "Sucesso";
} else {
return "Esta pessoa não foi encontrada na fila";
}
}
insert(element: string, position: number): string {
const nameToLowerCase = element.toLowerCase();
const queuePosition = position + 1;
if (position >= 0 && position <= this.items.length) {
this.items.splice(queuePosition, 0, nameToLowerCase);
return `${this.items[queuePosition]} furou a fila!`;
} else {
return "Posição inválida!";
}
}
show(): string[]{
return this.items;
}
listAll(): string {
const players = this.items.map(
(item) => item.split("")[0].toUpperCase() + item.slice(1)
);
if (this.isEmpty()) {
return "A fila está vazia.";
} else {
const string = `🏓 *${players[0]}* e *${players[1]}* estão jogando! 🏓`;
const remaining = players.slice(2);
const finalString =
`${string}\nFila:\n` +
remaining.map((player, index) => `*${index + 1}.* ${player}`).join("\n");
return finalString;
}
}
}