-
Notifications
You must be signed in to change notification settings - Fork 51
/
Banker's Algorothm.cpp
85 lines (85 loc) · 1.74 KB
/
Banker's Algorothm.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
#include<iostream>
using namespace std;
int main(){
int n,m,i,j,k;
cout<<"Enter number of processes: ";
cin>>n;
cout<<"\nEnter number of resources: ";
cin>>m;
int max[n][m],alloc[n][m],avail[m],need[n][m],ans[n],ind=0,f[n];
int id,p[m];
for(k=0;k<n;k++)
f[k]=0;
for(i=0;i<n;i++){
cout<<"\nEnter details for P"<<i;
cout<<"\nEnter allocation: ";
for(j=0;j<m;j++){
cin>>alloc[i][j];
}
cout<<"Enter max: ";
for(j=0;j<m;j++){
cin>>max[i][j];
}
}
cout<<"\nEnter available resource: ";
for(i=0;i<m;i++)
cin>>avail[i];
for(i=0;i<n;i++){
for(j=0;j<m;j++)
need[i][j]=max[i][j]-alloc[i][j];
}
cout<<"\nEnter new request details";
cout<<"\nEnter process id: ";
cin>>id;
cout<<"\nEnter request for resources: ";
for(i=0;i<m;i++){
cin>>p[i];
if(p[i]<=need[id][i]){
if(p[i]<=avail[i]){
avail[i]=avail[i]-p[i];
alloc[id][i]=alloc[id][i]+p[i];
need[id][i]=need[id][i]-p[i];
}
}
}
for(k=0;k<n;k++){
for(i=0;i<n;i++){
if(f[i]==0){
int flag=0;
for(j=0;j<m;j++){
if(need[i][j]>avail[j]){
flag=1;
break;
}
}
if(flag==0){
ans[ind++]=i;
cout<<"\nP"<<i<<" is visited ";
for(int y=0;y<m;y++){
avail[y]+=alloc[i][y];
cout<<avail[y]<<" ";
}
f[i]=1;
}
}
}
}
cout<<"\nThe Safe Sequence is ";
for(i=0;i<n-1;i++)
cout<<"P"<<ans[i]<<" ";
cout<<"P"<<ans[n-1]<<"\n";
cout<<"\nProcess\tAllocation\tMax\tNeed\n";
for(i=0;i<n;i++){
cout<<"P"<<i<<"\t";
for(j=0;j<m;j++)
cout<<alloc[i][j]<<" ";
cout<<"\t\t";
for(j=0;j<m;j++)
cout<<max[i][j]<<" ";
cout<<"\t";
for(j=0;j<m;j++)
cout<<need[i][j]<<" ";
cout<<"\n";
}
return 0;
}