-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.cpp
462 lines (389 loc) · 8.3 KB
/
main.cpp
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
#include <iostream>
#include <string>
#include <limits>
#include <chrono>
#include <thread>
using namespace std;
#ifdef WINDOWS
#define CLEAR "cls"
#else
#define CLEAR "clear"
#endif
struct Course
{
int id;
string name;
Course *next;
};
int choiceDetect()
{
int choice = 0;
while (true)
{
// Check if the user's input is a valid number
if (!(cin >> choice))
{
cout << "Invalid input. Please enter a number.\n\n";
cin.clear();
cin.ignore(numeric_limits<streamsize>::max(), '\n');
continue;
}
return choice;
}
}
// ------ Start Main Operations
Course *InsertLast(Course *head, string name)
{
Course *temp = new Course();
temp->name = name;
temp->id = 1;
temp->next = NULL;
if (head == NULL)
{
head = temp;
return head;
}
Course *temp2 = head;
temp->id++;
while (temp2->next != NULL)
{
temp->id++;
temp2 = temp2->next;
}
temp2->next = temp;
return head;
}
void Display(Course *head)
{
if (head == NULL)
{
cout << "Sorry it seems there is no corses in the system at the moment\n";
}
else if (head != NULL)
{
// choose order
// system("cls"); // uncomment it when you find the right command!
int sortType;
cout << "1- Ascending\n";
cout << "2- Descending\n";
sortType = choiceDetect();
// normle Ascending
if (sortType == 1)
{
while (head != NULL)
{
cout << "Course Name: " << head->name << "\t";
cout << "Course Id: " << head->id << endl;
head = head->next;
}
return;
}
// Revers Descending
else if (sortType == 2)
{
Course *current = head;
Course *prev = NULL;
Course *next = NULL;
while (current != NULL)
{
// Store next
next = current->next;
// Reverse current node's pointer
current->next = prev;
// Move pointers one position ahead.
prev = current;
current = next;
}
head = prev;
while (head != NULL)
{
cout << "Course Name: " << head->name << "\t";
cout << "Course Id: " << head->id << endl;
head = head->next;
}
return;
}
else
{
cout << "Wrong Input Please Restart and Enter a valid number\n";
}
}
}
Course *Modify(Course *head, string name, string newName)
{
Course *temp = head;
if (temp == NULL)
{
cout << "Sorry it seems there is no corses in the system at the moment\n";
}
while (temp != NULL)
{
if (temp->name == name)
{
temp->name = newName;
cout << "\nDone!\n\n";
}
temp = temp->next;
}
return head; // handle warning
}
Course *Delete(Course *head, string name)
{
Course *temp = head;
Course *prev = NULL;
if (temp == NULL)
{
cout << "Sorry it seems there is no corses in the system at the moment\n";
}
while (temp != NULL)
{
if (temp->name == name)
{
if (prev != NULL)
{
prev->next = temp->next;
delete temp;
cout << "\nDone!\n\n";
return head;
}
else
{
head = temp->next;
delete temp;
cout << "\nDone!\n\n";
return head;
}
}
prev = temp;
temp = temp->next;
}
return head; // handle warning
}
void search(Course *head)
{
if (head == NULL)
{
cout << "Sorry it seems there is no corses in the system at the moment\n";
std::this_thread::sleep_for(std::chrono::milliseconds(2000));
}
else
{
// way of search
// system("cls"); // uncomment it when you find the right command!
system(CLEAR);
int searchType;
cout << "1- Search by Corse ID\n";
cout << "2- Search by Corse Name\n";
cin >> searchType;
// search by id
if (searchType == 1)
{
int theId;
cout << "please input the id:";
cin >> theId;
if (theId != 0)
{
while (head != NULL)
{
if (theId == head->id)
{
cout << "the course has been found:\n"
<< head->name << " ID: " << head->id << '\n';
return;
}
else
{
head = head->next;
}
}
cout << "No such course has been found \n";
}
else
{
cout << "Invalid input please restart\n";
std::this_thread::sleep_for(std::chrono::milliseconds(1500));
return;
}
}
// search by name
else if (searchType == 2)
{
if (head == NULL)
{
cout << "Sorry it seems there is no course in the system at the moment\n";
std::this_thread::sleep_for(std::chrono::milliseconds(1500));
}
else
{
string theName;
cout << "\t\tATTENTION PLAESE!!! the name should be 100% right\n";
cout << "please input the name:";
cin >> theName;
while (head != NULL)
{
if (theName == head->name)
{
cout << "the course has been found:\n"
<< head->name << "\nID: " << head->id << '\n';
return;
}
else
{
head = head->next;
}
}
cout << "No such course has been found \n";
}
}
else
{
cout << "Wrong input. Please restart and Enter a valid number!\n";
}
}
}
// ------ End Main Operations
// prebulid Courses
Course *preCourse(Course *head)
{
// first
head = InsertLast(head, "Pieology");
// second
head = InsertLast(head, "Sciences");
// third
head = InsertLast(head, "Mathematics");
return head;
}
// ------ Start Admin Operations
void addCourse(Course *head)
{
string courseName;
cout << "Enter Course Name: ";
cin >> courseName;
head = InsertLast(head, courseName);
cout << "\nDone!\n\n";
}
void modifyCourse(Course *head)
{
string courseName, newName;
cout << "\t\tATTENTION PLAESE!!! the name should be 100% right\n";
cout << "Please input course name: ";
cin >> courseName;
cout << "Enter new name: ";
cin >> newName;
head = Modify(head, courseName, newName);
}
void deleteCourse(Course *head)
{
string courseName;
cout << "Enter course name: ";
cin >> courseName;
head = Delete(head, courseName);
}
// ------ End Admin Operations
// ------ Start Accounts
void user(Course *head)
{
while (true)
{
int choice;
cout << "Choose what you want to do:\n\n";
cout << "1- List all courses.\n";
cout << "2- Search specific course.\n";
cout << "0- Go back to menu\n";
choice = choiceDetect();
switch (choice)
{
case 1:
Display(head);
break;
case 2:
search(head);
break;
case 0:
return;
default:
cout << "Please Choose a right number.\n\n";
break;
}
}
}
void admin(Course *head)
{
string password = "1221";
string inputPass;
cout << "INPUT THE PASSWORD: ";
cin >> inputPass;
if (password == inputPass)
{
while (true)
{
int choice;
cout << "\n\t\tWelcome Admin!\n\n";
cout << "Choose what you want to do:\n\n";
cout << "1- List all courses.\n";
cout << "2- Search specific course.\n";
cout << "3- Add new course.\n";
cout << "4- Modify specific course.\n";
cout << "5- Delete course.\n";
cout << "0- Go back to menu.\n";
choice = choiceDetect();
switch (choice)
{
case 1:
Display(head);
break;
case 2:
search(head);
break;
case 3:
addCourse(head);
break;
case 4:
modifyCourse(head);
break;
case 5:
deleteCourse(head);
break;
case 0:
return;
default:
cout << "Please Choose a right number.\n\n";
break;
}
}
}
else
{
system(CLEAR);
cout << "Password incorrect!\n";
std::this_thread::sleep_for(std::chrono::milliseconds(1000));
return;
}
}
// ------ End Accounts
int main()
{
Course *head = nullptr;
head = preCourse(head);
while (true)
{
int choice = 0;
cout << "\nWelcome to our Course System! Please choose who are you?\n";
cout << "1- User\n2- Admin\n";
choice = choiceDetect();
cout << endl;
switch (choice)
{
case 1:
user(head);
break;
case 2:
admin(head);
break;
default:
cout << "Please Choose a right number.\n\n";
break;
}
}
return 0;
}