-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
40 lines (34 loc) · 840 Bytes
/
main.cpp
File metadata and controls
40 lines (34 loc) · 840 Bytes
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
#include "process.h"
#include "scheduler.h"
void showMenu() {
std::cout << "Choose The Algorithm\n";
std::cout << "1- First Come First Served (FCFS) \n";
std::cout << "2- Round-Robin(RR) \n";
std::cout << "3- preemptive Highest Priority First(HPF)\n";
std::cout << "4- Shortest Remaining Time Next(SRTN)\n";
}
int main()
{
generate_processes();
load_processes();
showMenu();
int choice;
std::cin >> choice;
if(choice == 1) {
fcfs(); // First come, first served
}
else if(choice == 2) {
rr(); // Round Robin
}
else if(choice == 3) {
hpf(); // Highest priority first
}
else if(choice == 4) {
srtn(); // Shortest Remaining Time Next
}
else {
std::cout << "Wrong choice\n";
}
std::cout << "End\n";
return 0;
}