forked from SM719/CPU_Scheduler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalgorithm.h
More file actions
40 lines (30 loc) · 666 Bytes
/
algorithm.h
File metadata and controls
40 lines (30 loc) · 666 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 <iostream>
#include <string.h>
#include <queue>
#include "Process.h"
using namespace std;
#ifndef algorithm_h
#define algorithm_h
class Algorithm
{
public:
Algorithm(vector<Process> processVec, int processNum);
void UseAlgorithm();
vector<Process> doneProcesses_;
private:
void ExecuteAlgorithm();
void ExecuteFCFS();
void ExecuteRR(int cpuTimeout);
void ExecutePPP();
void ExecuteIPP();
void ExecuteNPP();
void ExecuteSJF();
void ExecuteSPB();
int algorithm_;
int totalProcesses_;
Process* processInCPU_;
vector<Process> inputProcesses_;
vector<Process> readyQueue_;
vector<Process> waitingQueue_;
};
#endif