-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstudent-transport.cpp
More file actions
427 lines (359 loc) · 13 KB
/
student-transport.cpp
File metadata and controls
427 lines (359 loc) · 13 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
#include <iostream>
#include <vector>
#include <map>
#include <algorithm>
#include <iomanip>
#include <fstream>
#include <limits>
using namespace std;
// Class to represent a Bus
class Bus {
public:
string busNumber;
string driverName;
int capacity;
vector<string> routeStops;
vector<string> assignedStudents;
Bus(string num, string driver, int cap, vector<string> stops)
: busNumber(num), driverName(driver), capacity(cap), routeStops(stops) {}
void displayInfo() const {
cout << "\nBus Number: " << busNumber
<< "\nDriver: " << driverName
<< "\nCapacity: " << capacity << " students"
<< "\nCurrent Load: " << assignedStudents.size() << " students"
<< "\nRoute Stops: ";
for (const auto& stop : routeStops) {
cout << stop << " -> ";
}
cout << "END\n";
}
bool isFull() const {
return assignedStudents.size() >= capacity;
}
};
// Class to represent a Student
class Student {
public:
string id;
string name;
string address;
string pickupStop;
string assignedBus;
Student(string studentId, string studentName, string studentAddress, string stop)
: id(studentId), name(studentName), address(studentAddress), pickupStop(stop) {}
void displayInfo() const {
cout << "\nStudent ID: " << id
<< "\nName: " << name
<< "\nAddress: " << address
<< "\nPickup Stop: " << pickupStop
<< "\nAssigned Bus: " << (assignedBus.empty() ? "Not assigned" : assignedBus) << "\n";
}
};
// Transport Management System class
class TransportSystem {
private:
vector<Bus> buses;
vector<Student> students;
map<string, vector<string>> stopToBusesMap;
public:
void addBus() {
string num, driver;
int cap;
vector<string> stops;
string stop;
int numStops;
cout << "\nEnter Bus Number: ";
cin >> num;
cin.ignore();
cout << "Enter Driver Name: ";
getline(cin, driver);
cout << "Enter Bus Capacity: ";
cin >> cap;
cin.ignore();
cout << "Enter number of stops: ";
cin >> numStops;
cin.ignore();
cout << "Enter " << numStops << " stops (one per line):\n";
for (int i = 0; i < numStops; i++) {
getline(cin, stop);
stops.push_back(stop);
}
buses.emplace_back(num, driver, cap, stops);
updateStopMap(num, stops);
cout << "Bus added successfully!\n";
}
void updateStopMap(const string& busNum, const vector<string>& stops) {
for (const auto& stop : stops) {
stopToBusesMap[stop].push_back(busNum);
}
}
void addStudent() {
string id, name, address, stop;
cout << "\nEnter Student ID: ";
cin >> id;
cin.ignore();
cout << "Enter Student Name: ";
getline(cin, name);
cout << "Enter Student Address: ";
getline(cin, address);
cout << "Enter Pickup Stop: ";
getline(cin, stop);
students.emplace_back(id, name, address, stop);
cout << "Student added successfully!\n";
}
void assignBusToStudent() {
if (students.empty()) {
cout << "No students available!\n";
return;
}
if (buses.empty()) {
cout << "No buses available!\n";
return;
}
string studentId;
cout << "Enter Student ID to assign bus: ";
cin >> studentId;
auto studentIt = find_if(students.begin(), students.end(),
[&studentId](const Student& s) { return s.id == studentId; });
if (studentIt == students.end()) {
cout << "Student not found!\n";
return;
}
string stop = studentIt->pickupStop;
if (stopToBusesMap.find(stop) == stopToBusesMap.end()) {
cout << "No buses available for this stop!\n";
return;
}
vector<string> availableBuses = stopToBusesMap[stop];
vector<Bus*> busesForStop;
// Find buses that go to this stop and have capacity
for (auto& bus : buses) {
if (find(availableBuses.begin(), availableBuses.end(), bus.busNumber) != availableBuses.end() && !bus.isFull()) {
busesForStop.push_back(&bus);
}
}
if (busesForStop.empty()) {
cout << "No available buses with capacity for this stop!\n";
return;
}
cout << "\nAvailable Buses for stop " << stop << ":\n";
for (int i = 0; i < busesForStop.size(); i++) {
cout << i + 1 << ". Bus " << busesForStop[i]->busNumber
<< " (Driver: " << busesForStop[i]->driverName
<< ", Available Seats: " << busesForStop[i]->capacity - busesForStop[i]->assignedStudents.size() << ")\n";
}
int choice;
cout << "Select bus to assign (1-" << busesForStop.size() << "): ";
cin >> choice;
if (choice < 1 || choice > busesForStop.size()) {
cout << "Invalid choice!\n";
return;
}
Bus* selectedBus = busesForStop[choice - 1];
selectedBus->assignedStudents.push_back(studentId);
studentIt->assignedBus = selectedBus->busNumber;
cout << "Student " << studentIt->name << " assigned to Bus " << selectedBus->busNumber << " successfully!\n";
}
void displayAllBuses() const {
if (buses.empty()) {
cout << "No buses available!\n";
return;
}
cout << "\n===== ALL BUSES =====\n";
for (const auto& bus : buses) {
bus.displayInfo();
if (!bus.assignedStudents.empty()) {
cout << "Assigned Students (" << bus.assignedStudents.size() << "): ";
for (const auto& student : bus.assignedStudents) {
cout << student << " ";
}
cout << "\n";
}
cout << "------------------------\n";
}
}
void displayAllStudents() const {
if (students.empty()) {
cout << "No students available!\n";
return;
}
cout << "\n===== ALL STUDENTS =====\n";
for (const auto& student : students) {
student.displayInfo();
cout << "------------------------\n";
}
}
void displayBusDetails() const {
if (buses.empty()) {
cout << "No buses available!\n";
return;
}
string busNum;
cout << "Enter Bus Number: ";
cin >> busNum;
auto it = find_if(buses.begin(), buses.end(),
[&busNum](const Bus& b) { return b.busNumber == busNum; });
if (it == buses.end()) {
cout << "Bus not found!\n";
return;
}
it->displayInfo();
if (!it->assignedStudents.empty()) {
cout << "\nAssigned Students:\n";
for (const auto& studentId : it->assignedStudents) {
auto studentIt = find_if(students.begin(), students.end(),
[&studentId](const Student& s) { return s.id == studentId; });
if (studentIt != students.end()) {
cout << "ID: " << studentIt->id << ", Name: " << studentIt->name
<< ", Pickup: " << studentIt->pickupStop << "\n";
}
}
}
}
void displayStudentDetails() const {
if (students.empty()) {
cout << "No students available!\n";
return;
}
string studentId;
cout << "Enter Student ID: ";
cin >> studentId;
auto it = find_if(students.begin(), students.end(),
[&studentId](const Student& s) { return s.id == studentId; });
if (it == students.end()) {
cout << "Student not found!\n";
return;
}
it->displayInfo();
if (!it->assignedBus.empty()) {
auto busIt = find_if(buses.begin(), buses.end(),
[&it](const Bus& b) { return b.busNumber == it->assignedBus; });
if (busIt != buses.end()) {
cout << "Bus Details:\n";
cout << "Number: " << busIt->busNumber << "\n";
cout << "Driver: " << busIt->driverName << "\n";
cout << "Route: ";
for (const auto& stop : busIt->routeStops) {
cout << stop << " -> ";
}
cout << "END\n";
}
}
}
void saveDataToFile() const {
ofstream busFile("buses.txt"), studentFile("students.txt");
// Save buses data
for (const auto& bus : buses) {
busFile << bus.busNumber << "," << bus.driverName << "," << bus.capacity << ",";
for (const auto& stop : bus.routeStops) {
busFile << stop << ";";
}
busFile << ",";
for (const auto& student : bus.assignedStudents) {
busFile << student << ";";
}
busFile << "\n";
}
// Save students data
for (const auto& student : students) {
studentFile << student.id << "," << student.name << ","
<< student.address << "," << student.pickupStop << ","
<< student.assignedBus << "\n";
}
cout << "Data saved to files successfully!\n";
}
void loadDataFromFile() {
ifstream busFile("buses.txt"), studentFile("students.txt");
string line;
// Load buses data
buses.clear();
stopToBusesMap.clear();
while (getline(busFile, line)) {
size_t pos = 0;
vector<string> tokens;
while ((pos = line.find(',')) != string::npos) {
tokens.push_back(line.substr(0, pos));
line.erase(0, pos + 1);
}
tokens.push_back(line);
if (tokens.size() >= 4) {
string busNum = tokens[0];
string driver = tokens[1];
int capacity = stoi(tokens[2]);
// Parse stops
vector<string> stops;
string stopToken;
istringstream stopStream(tokens[3]);
while (getline(stopStream, stopToken, ';')) {
if (!stopToken.empty()) stops.push_back(stopToken);
}
// Create bus
buses.emplace_back(busNum, driver, capacity, stops);
updateStopMap(busNum, stops);
// Parse assigned students if exists
if (tokens.size() > 4) {
string studentToken;
istringstream studentStream(tokens[4]);
while (getline(studentStream, studentToken, ';')) {
if (!studentToken.empty()) {
buses.back().assignedStudents.push_back(studentToken);
}
}
}
}
}
// Load students data
students.clear();
while (getline(studentFile, line)) {
size_t pos = 0;
vector<string> tokens;
while ((pos = line.find(',')) != string::npos) {
tokens.push_back(line.substr(0, pos));
line.erase(0, pos + 1);
}
tokens.push_back(line);
if (tokens.size() >= 5) {
students.emplace_back(tokens[0], tokens[1], tokens[2], tokens[3]);
students.back().assignedBus = tokens[4];
}
}
cout << "Data loaded from files successfully!\n";
}
void showMenu() {
cout << "\n===== STUDENT TRANSPORT MANAGEMENT SYSTEM =====\n";
cout << "1. Add New Bus\n";
cout << "2. Add New Student\n";
cout << "3. Assign Bus to Student\n";
cout << "4. Display All Buses\n";
cout << "5. Display All Students\n";
cout << "6. Display Bus Details\n";
cout << "7. Display Student Details\n";
cout << "8. Save Data to File\n";
cout << "9. Load Data from File\n";
cout << "0. Exit\n";
cout << "Enter your choice: ";
}
};
int main() {
TransportSystem system;
int choice;
do {
system.showMenu();
cin >> choice;
cin.ignore(numeric_limits<streamsize>::max(), '\n');
switch (choice) {
case 1: system.addBus(); break;
case 2: system.addStudent(); break;
case 3: system.assignBusToStudent(); break;
case 4: system.displayAllBuses(); break;
case 5: system.displayAllStudents(); break;
case 6: system.displayBusDetails(); break;
case 7: system.displayStudentDetails(); break;
case 8: system.saveDataToFile(); break;
case 9: system.loadDataFromFile(); break;
case 0: cout << "Exiting system...\n"; break;
default: cout << "Invalid choice! Try again.\n";
}
} while (choice != 0);
return 0;
}