-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRound Robin.cpp
55 lines (54 loc) · 1.09 KB
/
Round Robin.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
#include<iostream>
using namespace std;
int main()
{
cout<<"\t Priority Scheduling \t";
int n;
cout<<"Enter the number of process : ";
cin>>n;
int x,p[n],pp[n],pt[n],w[n],t[n],awt,atat,i;
cout<<"\n Enter process : time priorities \n";
for(i=0;i<n;i++)
{
cout<<"\nProcess no : "<<i+1;
cin>>pt[i]>>pp[i];
p[i]=i+1;
}
for(i=0;i<n-1;i++)
{
for(int j=i+1;j<n;j++)
{
if(pp[i]<pp[j])
{
x=pp[i];
pp[i]=pp[j];
pp[j]=x;
x=pt[i];
pt[i]=pt[j];
pt[j]=x;
x=p[i];
p[i]=p[j];
p[j]=x;
}
}
}
w[0]=0;
awt=0;
t[0]=pt[0];
atat=t[0];
for(i=1;i<n;i++)
{
w[i]=t[i-1];
awt+=w[i];
t[i]=w[i]+pt[i];
atat+=t[i];
}
cout<<"\n\n Job \t Burst Time \t Waiting Time \t Turn Around Time Priority \n";
for(i=0;i<n;i++)
cout<<"\n"<<p[i]<<"\t\t"<<pt[i]<<"\t\t"<<w[i]<<"\t\t"<<t[i]<<"\t\t"<<pp[i]<<"\n";
awt/=n;
atat/=n;
cout<<"\n Average Wait Time : "<<awt;
cout<<"\n Average Turn Around Time : "<<atat;
return 0;
}