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 pathHospitalManagementV2.cpp
More file actions
526 lines (471 loc) · 15.3 KB
/
HospitalManagementV2.cpp
File metadata and controls
526 lines (471 loc) · 15.3 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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <iomanip>
using namespace std;
// Structure for Patient
struct Patient {
int id;
string name;
string condition; // e.g., "Fever"
Patient* next;
};
// Structure for Doctor
struct Doctor {
int id;
string name;
string specialty; // e.g., "Cardiology"
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; // Linked list for patients
Doctor* doctors; // Linked list for doctors
Appointment* appointments; // Linked list for appointments
string csv_patients; // CSV file for patients
string csv_doctors; // CSV file for doctors
string csv_appointments; // CSV file for appointments
// Convert string to lowercase for search
string toLower(string str) {
for (char &c : str)
c = tolower(c);
return str;
}
// Load patients from CSV
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;
newPatient->id = stoi(tokens[0]);
newPatient->name = tokens[1];
newPatient->condition = tokens[2];
newPatient->next = nullptr;
// Insert sorted by name
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();
}
// Load doctors from CSV
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;
newDoctor->id = stoi(tokens[0]);
newDoctor->name = tokens[1];
newDoctor->specialty = tokens[2];
newDoctor->next = nullptr;
// Insert sorted by name
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();
}
// Load appointments from CSV
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;
newAppt->patient_id = stoi(tokens[0]);
newAppt->doctor_id = stoi(tokens[1]);
newAppt->date = tokens[2];
newAppt->next = nullptr;
// Insert at end
if (!appointments) {
appointments = newAppt;
} else {
Appointment* current = appointments;
while (current->next)
current = current->next;
current->next = newAppt;
}
}
}
file.close();
}
// Save patients to CSV
void savePatients() {
ofstream file(csv_patients);
Patient* current = patients;
while (current) {
file << current->id << "," << current->name << "," << current->condition << "\n";
current = current->next;
}
file.close();
}
// Save doctors to CSV
void saveDoctors() {
ofstream file(csv_doctors);
Doctor* current = doctors;
while (current) {
file << current->id << "," << current->name << "," << current->specialty << "\n";
current = current->next;
}
file.close();
}
// Save appointments to CSV
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();
}
// Add a patient
void addPatient() {
int id;
string name, condition;
cout << "Enter patient ID: ";
cin >> id;
cin.ignore(); // Clear newline
cout << "Enter patient name: ";
getline(cin, name);
cout << "Enter patient condition: ";
getline(cin, condition);
Patient* newPatient = new Patient;
newPatient->id = id;
newPatient->name = name;
newPatient->condition = condition;
newPatient->next = nullptr;
// Insert sorted by name
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";
}
// Add a doctor
void addDoctor() {
int id;
string name, specialty;
cout << "Enter doctor ID: ";
cin >> id;
cin.ignore();
cout << "Enter doctor name: ";
getline(cin, name);
cout << "Enter doctor specialty: ";
getline(cin, specialty);
Doctor* newDoctor = new Doctor;
newDoctor->id = id;
newDoctor->name = name;
newDoctor->specialty = specialty;
newDoctor->next = nullptr;
// Insert sorted by name
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";
}
// Book an appointment
void bookAppointment() {
int patient_id, doctor_id;
string date;
cout << "Enter patient ID: ";
cin >> patient_id;
cout << "Enter doctor ID: ";
cin >> doctor_id;
cin.ignore();
cout << "Enter appointment date: ";
getline(cin, date);
// Check if patient and doctor exist
Patient* p = patients;
bool patient_exists = false;
while (p) {
if (p->id == patient_id) {
patient_exists = true;
break;
}
p = p->next;
}
Doctor* d = doctors;
bool doctor_exists = false;
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;
newAppt->patient_id = patient_id;
newAppt->doctor_id = doctor_id;
newAppt->date = date;
newAppt->next = nullptr;
// Insert at end
if (!appointments) {
appointments = newAppt;
} else {
Appointment* current = appointments;
while (current->next)
current = current->next;
current->next = newAppt;
}
saveAppointments();
cout << "Appointment booked.\n";
}
// List all patients
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;
}
}
// List all doctors
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;
}
}
// List all appointments
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;
}
}
// Search patients by name
void searchPatients() {
string query;
cout << "Enter patient name to search: ";
cin.ignore();
getline(cin, query);
query = toLower(query);
Patient* current = patients;
bool found = false;
cout << "ID Name Condition\n";
cout << "--------------------------------\n";
while (current) {
if (toLower(current->name).find(query) != string::npos) {
music cout << left << setw(6) << current->id
<< setw(21) << current->name
<< current->condition << "\n";
found = true;
}
current = current->next;
}
if (!found)
cout << "No patients match '" << query << "'.\n";
}
// Delete a patient
void deletePatient() {
int id;
cout << "Enter patient ID to delete: ";
cin >> id;
if (!patients) {
cout << "No patients to delete.\n";
return;
}
if (patients->id == id) {
Patient* temp = patients;
patients = patients->next;
delete temp;
savePatients();
cout << "Patient deleted.\n";
return;
}
Patient* current = patients;
while (current->next && current->next->id != id)
current = current->next;
if (current->next) {
Patient* temp = current->next;
current->next = temp->next;
delete temp;
savePatients();
cout << "Patient deleted.\n";
} else {
cout << "Patient ID not found.\n";
}
}
// Show menu
void showMenu() {
cout << "\nHospital Management System\n"
<< "1. Add Patient\n"
<< "2. Add Doctor\n"
<< "3. Book Appointment\n"
<< "4. List Patients\n"
<< "5. List Doctors\n"
<< "6. List Appointments\n"
<< "7. Search Patients\n"
<< "8. Delete Patient\n"
<< "9. Help\n"
<< "10. Exit\n"
<< "Enter choice (1-10): ";
}
};
// Main program
int main() {
HospitalManager hospital("patients.csv", "doctors.csv", "appointments.csv");
int choice;
cout << "Welcome to Hospital Management System\n";
while (true) {
hospital.showMenu();
cin >> choice;
if (cin.fail()) {
cin.clear();
cin.ignore(10000, '\n');
cout << "Invalid input. Enter a number.\n";
continue;
}
switch (choice) {
case 1:
hospital.addPatient();
break;
case 2:
hospital.addDoctor();
break;
case 3:
hospital.bookAppointment();
break;
case 4:
hospital.listPatients();
break;
case 5:
hospital.listDoctors();
break;
case 6:
hospital.listAppointments();
break;
case 7:
hospital.searchPatients();
break;
case 8:
hospital.deletePatient();
break;
case 9:
hospital.showMenu();
break;
case 10:
cout << "Goodbye!\n";
return 0;
default:
cout << "Invalid choice. Enter 1-10.\n";
}
}
return 0;
}