-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBankersAlgo.c
70 lines (62 loc) · 1.25 KB
/
BankersAlgo.c
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
// Banker's Algorithm
#include <stdio.h>
int main()
{
// P0, P1, P2, P3, P4 are the Process names here
int n, m, i, j, k;
printf("\nEnter number of processes: ");
scanf("%d", &n);
printf("\nEnter max resource: ");
scanf("%d", &m);
int alloc[n];
int sum=0
for (int i = 0; i < n; i++)
{
scanf("%d", &alloc[i]);
sum=sum+alloc[i];
}
int max[n];
for (int i = 0; i < n; i++)
{
scanf("%d", &max[i]);
} // P4
int avail= m-sum;// Available Resources
printf("%d",&avail);
int
for(int i=0;i<n;i++){
if()
}
int f[n], ans[n], ind = 0;
for (k = 0; k < n; k++) {
f[k] = 0;
}
int need[n];
for (i = 0; i < n; i++) {
need[i] = max[i] - alloc[i];
}
int y = 0;
for (k = 0; k < 5; k++) {
for (i = 0; i < n; i++) {
if (f[i] == 0) {
int flag = 0;
if (need[i] > avail){
{ flag = 1;
break;
}
}
if (flag == 0) {
ans[ind++] = i;
for (y = 0; y < m; y++)
avail += alloc[i];
f[i] = 1;
}
}
}
}
printf("Following is the SAFE Sequence\n");
for (i = 0; i < n - 1; i++)
printf(" P%d ->", ans[i]);
printf(" P%d", ans[n - 1]);
return (0);
// This code is contributed by Deep Baldha (CandyZack)
}