-
Notifications
You must be signed in to change notification settings - Fork 0
/
patient.h
73 lines (53 loc) · 2.15 KB
/
patient.h
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
#ifndef PATIENT_H_INCLUDED
#define PATIENT_H_INCLUDED
#include <iostream>
#include <string>
#include "treatment.h"
using namespace std;
typedef struct Patient patientInfo;
typedef struct ElmPatient *patientAddress;
#define nil NULL
struct Patient {
string info;
string gender;
int age;
};
struct ElmPatient {
patientInfo info;
patientAddress prev;
patientAddress next;
treatmentAddress relation;
};
struct ListPatient {
patientAddress first;
patientAddress last;
};
// IS. -
// FS. Terbentuk sebuah list di mana, first dari L bernilai NIL.
void createdNewListPatient(ListPatient &L);
// Fungsi mengembalikan elemen patient berdasarkan parameter fungsi, yaitu 'Elm'.
patientAddress allocatePatient(patientInfo Elm);
// IS. Terdefinisi pointer P berisi alamat elmPatient, dan seuah list L ( L mungkin kosong).
// FS. elmPatient yang ditunjuk oleh P ditambahkan ke dalam list sebagai elemen terakhir.
void insertPatientLast(ListPatient &L, patientAddress P);
// IS. Terdefinisi sebuah list L (L tidak kosong dan mungkin berisi satu elemen).
// FS. P berisi alamat elmPatient yang terakhir, elmPatient yang ditunjuk oleh P dihapus dari list
void deletePatient(ListPatient &L, string patientInfo);
// Fungsi untuk mencari pasien berdasarkan info
patientAddress findPatient(ListPatient &L, string patientInfo);
// Fungsi mengembalikan True apabila list kosong, atau False bila sebaliknya.
bool isPatientEmpty(ListPatient L);
// IS. Terdefinisi sebuah list patient L
// FS. Menampilkan semua info elmPatient di list.
void printListPatient(ListPatient L);
// IS. Terdefinisi sebuah list patient L
// FS. Menampilkan elmPatient yang ditangani oleh dokter tertentu.
void printListPatientByDoctor(ListPatient L, string doctor);
// IS. Terdefinisi sebuah list patient L
// FS. Menampilkan detail pasien tertentu beserta dokter yang menanganinya.
void printPatientDetails(ListPatient L, string patientInfo);
// Fungsi untuk menghitung total dokter yang menangani pasien tertentu
int countDoctorsForPatient(ListPatient L, string patientInfo);
// Fungsi untuk menghitung total pasien yang belum ditangani dokter
int countPatientNoDoctor(ListPatient L);
#endif // PATIENT_H_INCLUDED