-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsegundoDesafio.js
62 lines (54 loc) · 1.68 KB
/
segundoDesafio.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
class Paciente {
constructor(id, nome, estadoSaude) {
this.id = id;
this.nome = nome;
this.estadoSaude = estadoSaude;
this.proximoPaciente = null;
}
}
class ListaDePacientes {
constructor() {
this.head = null;
}
adicionar_paciente(id, nome, estadoSaude) {
let novoPaciente = new Paciente(id, nome, estadoSaude);
if (this.head === null) {
this.head = novoPaciente;
} else {
let pacienteAtual = this.head;
while (pacienteAtual.proximoPaciente !== null) {
pacienteAtual = pacienteAtual.proximoPaciente;
}
pacienteAtual.proximoPaciente = novoPaciente;
}
}
remover_paciente(id) {
if (this.head === null) {
return;
} else if (this.head.id === id) {
this.head = this.head.proximoPaciente;
return;
} else {
let pacienteAtual = this.head;
while (pacienteAtual.proximoPaciente !== null) {
if (pacienteAtual.proximoPaciente.id === id) {
pacienteAtual.proximoPaciente = pacienteAtual.proximoPaciente.proximoPaciente;
return;
}
pacienteAtual = pacienteAtual.proximoPaciente;
}
}
}
listar_pacientes() {
if (this.head === null) {
console.log("Não há pacientes nesta lista.");
} else {
let pacienteAtual = this.head;
while (pacienteAtual !== null) {
console.log(`Nome: ${pacienteAtual.nome}, ID: ${pacienteAtual.id}, Estado de saúde: ${pacienteAtual.estadoSaude}`);
pacienteAtual = pacienteAtual.proximoPaciente;
}
}
}
}
let listaDePacientes = new ListaDePacientes();