This repository was archived by the owner on Jun 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHospitalManagement.cpp
More file actions
417 lines (366 loc) · 12.1 KB
/
HospitalManagement.cpp
File metadata and controls
417 lines (366 loc) · 12.1 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <iomanip>
using namespace std;
// Structure for Patient
struct Patient {
int id;
string name;
string condition;
Patient* next;
};
// Structure for Doctor
struct Doctor {
int id;
string name;
string specialty;
Doctor* next;
};
// Structure for Appointment
struct Appointment {
int patient_id;
int doctor_id;
string date;
Appointment* next;
};
// Class to manage hospital data
class HospitalManager {
Patient* patients;
Doctor* doctors;
Appointment* appointments;
string csv_patients;
string csv_doctors;
string csv_appointments;
string toLower(string str) {
for (char &c : str)
c = tolower(c);
return str;
}
vector<string> split(string str) {
vector<string> tokens;
string token;
for (char c : str) {
if (c == ' ') {
if (!token.empty()) {
tokens.push_back(token);
token.clear();
}
} else {
token += c;
}
}
if (!token.empty())
tokens.push_back(token);
return tokens;
}
void loadPatients() {
ifstream file(csv_patients);
string line;
while (getline(file, line)) {
vector<string> tokens;
string token;
for (char c : line) {
if (c == ',') {
tokens.push_back(token);
token.clear();
} else {
token += c;
}
}
tokens.push_back(token);
if (tokens.size() == 3) {
Patient* newPatient = new Patient{stoi(tokens[0]), tokens[1], tokens[2], nullptr};
if (!patients || toLower(patients->name) > toLower(newPatient->name)) {
newPatient->next = patients;
patients = newPatient;
} else {
Patient* current = patients;
while (current->next && toLower(current->next->name) < toLower(newPatient->name))
current = current->next;
newPatient->next = current->next;
current->next = newPatient;
}
}
}
file.close();
}
void loadDoctors() {
ifstream file(csv_doctors);
string line;
while (getline(file, line)) {
vector<string> tokens;
string token;
for (char c : line) {
if (c == ',') {
tokens.push_back(token);
token.clear();
} else {
token += c;
}
}
tokens.push_back(token);
if (tokens.size() == 3) {
Doctor* newDoctor = new Doctor{stoi(tokens[0]), tokens[1], tokens[2], nullptr};
if (!doctors || toLower(doctors->name) > toLower(newDoctor->name)) {
newDoctor->next = doctors;
doctors = newDoctor;
} else {
Doctor* current = doctors;
while (current->next && toLower(current->next->name) < toLower(newDoctor->name))
current = current->next;
newDoctor->next = current->next;
current->next = newDoctor;
}
}
}
file.close();
}
void loadAppointments() {
ifstream file(csv_appointments);
string line;
while (getline(file, line)) {
vector<string> tokens;
string token;
for (char c : line) {
if (c == ',') {
tokens.push_back(token);
token.clear();
} else {
token += c;
}
}
tokens.push_back(token);
if (tokens.size() == 3) {
Appointment* newAppt = new Appointment{stoi(tokens[0]), stoi(tokens[1]), tokens[2], nullptr};
if (!appointments) {
appointments = newAppt;
} else {
Appointment* current = appointments;
while (current->next)
current = current->next;
current->next = newAppt;
}
}
}
file.close();
}
void savePatients() {
ofstream file(csv_patients);
Patient* current = patients;
while (current) {
file << current->id << "," << current->name << "," << current->condition << "\n";
current = current->next;
}
file.close();
}
void saveDoctors() {
ofstream file(csv_doctors);
Doctor* current = doctors;
while (current) {
file << current->id << "," << current->name << "," << current->specialty << "\n";
current = current->next;
}
file.close();
}
void saveAppointments() {
ofstream file(csv_appointments);
Appointment* current = appointments;
while (current) {
file << current->patient_id << "," << current->doctor_id << "," << current->date << "\n";
current = current->next;
}
file.close();
}
public:
HospitalManager(string p_file, string d_file, string a_file) {
patients = nullptr;
doctors = nullptr;
appointments = nullptr;
csv_patients = p_file;
csv_doctors = d_file;
csv_appointments = a_file;
loadPatients();
loadDoctors();
loadAppointments();
}
void addPatient(int id, string name, string condition) {
Patient* newPatient = new Patient{id, name, condition, nullptr};
if (!patients || toLower(patients->name) > toLower(name)) {
newPatient->next = patients;
patients = newPatient;
} else {
Patient* current = patients;
while (current->next && toLower(current->next->name) < toLower(newPatient->name))
current = current->next;
newPatient->next = current->next;
current->next = newPatient;
}
savePatients();
cout << "Patient added.\n";
}
void addDoctor(int id, string name, string specialty) {
Doctor* newDoctor = new Doctor{id, name, specialty, nullptr};
if (!doctors || toLower(doctors->name) > toLower(name)) {
newDoctor->next = doctors;
doctors = newDoctor;
} else {
Doctor* current = doctors;
while (current->next && toLower(current->next->name) < toLower(newDoctor->name))
current = current->next;
newDoctor->next = current->next;
current->next = newDoctor;
}
saveDoctors();
cout << "Doctor added.\n";
}
void bookAppointment(int patient_id, int doctor_id, string date) {
bool patient_exists = false, doctor_exists = false;
Patient* p = patients;
while (p) {
if (p->id == patient_id) {
patient_exists = true;
break;
}
p = p->next;
}
Doctor* d = doctors;
while (d) {
if (d->id == doctor_id) {
doctor_exists = true;
break;
}
d = d->next;
}
if (!patient_exists || !doctor_exists) {
cout << "Invalid patient or doctor ID.\n";
return;
}
Appointment* newAppt = new Appointment{patient_id, doctor_id, date, nullptr};
if (!appointments) {
appointments = newAppt;
} else {
Appointment* current = appointments;
while (current->next)
current = current->next;
current->next = newAppt;
}
saveAppointments();
cout << "Appointment booked.\n";
}
void listPatients() {
if (!patients) {
cout << "No patients registered.\n";
return;
}
cout << "ID Name Condition\n";
cout << "--------------------------------------\n";
Patient* current = patients;
while (current) {
cout << left << setw(6) << current->id
<< setw(21) << current->name
<< current->condition << "\n";
current = current->next;
}
}
void listDoctors() {
if (!doctors) {
cout << "No doctors registered.\n";
return;
}
cout << "ID Name Specialty\n";
cout << "--------------------------------------\n";
Doctor* current = doctors;
while (current) {
cout << left << setw(6) << current->id
<< setw(21) << current->name
<< current->specialty << "\n";
current = current->next;
}
}
void listAppointments() {
if (!appointments) {
cout << "No appointments booked.\n";
return;
}
cout << "Patient ID Doctor ID Date\n";
cout << "-------------------------------\n";
Appointment* current = appointments;
while (current) {
cout << left << setw(12) << current->patient_id
<< setw(11) << current->doctor_id
<< current->date << "\n";
current = current->next;
}
}
};
// Example usage
int main() {
HospitalManager hm("patients.csv", "doctors.csv", "appointments.csv");
int choice;
while (true) {
cout << "\n========= Hospital Management System =========\n";
cout << "1. Add Patient\n";
cout << "2. Add Doctor\n";
cout << "3. Book Appointment\n";
cout << "4. List Patients\n";
cout << "5. List Doctors\n";
cout << "6. List Appointments\n";
cout << "7. Exit\n";
cout << "Enter your choice: ";
cin >> choice;
if (cin.fail()) {
cin.clear(); // clear error flag
cin.ignore(10000, '\n'); // discard input
cout << "Invalid input. Try again.\n";
continue;
}
if (choice == 1) {
int id;
string name, condition;
cout << "Enter patient ID: ";
cin >> id;
cin.ignore();
cout << "Enter patient name: ";
getline(cin, name);
cout << "Enter condition: ";
getline(cin, condition);
hm.addPatient(id, name, condition);
} else if (choice == 2) {
int id;
string name, specialty;
cout << "Enter doctor ID: ";
cin >> id;
cin.ignore();
cout << "Enter doctor name: ";
getline(cin, name);
cout << "Enter specialty: ";
getline(cin, specialty);
hm.addDoctor(id, name, specialty);
} else if (choice == 3) {
int pid, did;
string date;
cout << "Enter patient ID: ";
cin >> pid;
cout << "Enter doctor ID: ";
cin >> did;
cin.ignore();
cout << "Enter date (YYYY-MM-DD): ";
getline(cin, date);
hm.bookAppointment(pid, did, date);
} else if (choice == 4) {
hm.listPatients();
} else if (choice == 5) {
hm.listDoctors();
} else if (choice == 6) {
hm.listAppointments();
} else if (choice == 7) {
cout << "Exiting program...\n";
break;
} else {
cout << "Invalid choice. Please try again.\n";
}
}
return 0;
}