BANKERS ALGORITHM
Mon May 27 2024 13:23:58 GMT+0000 (Coordinated Universal Time)
Saved by @proxylabs
#include <stdio.h>
int main() {
int n, m, i, j, k;
// Get the number of processes and resources from the user
printf("Enter the number of processes: ");
scanf("%d", &n);
printf("Enter the number of resources: ");
scanf("%d", &m);
int alloc[n][m], max[n][m], avail[m];
// Get the Allocation Matrix from the user
printf("Enter the Allocation Matrix:\n");
for (i = 0; i < n; i++) {
printf("Process %d:\n", i);
for (j = 0; j < m; j++) {
scanf("%d", &alloc[i][j]);
}
}
// Get the Maximum Matrix from the user
printf("Enter the Maximum Matrix:\n");
for (i = 0; i < n; i++) {
printf("Process %d:\n", i);
for (j = 0; j < m; j++) {
scanf("%d", &max[i][j]);
}
}
// Get the Available Resources from the user
printf("Enter the Available Resources:\n");
for (i = 0; i < m; i++) {
scanf("%d", &avail[i]);
}
int f[n], ans[n], ind = 0;
for (k = 0; k < n; k++) {
f[k] = 0;
}
int need[n][m];
for (i = 0; i < n; i++) {
for (j = 0; j < m; j++) {
need[i][j] = max[i][j] - alloc[i][j];
}
}
int y = 0;
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;
for (y = 0; y < m; y++) {
avail[y] += alloc[i][y];
}
f[i] = 1;
}
}
}
}
int flag = 1;
for (i = 0; i < n; i++) {
if (f[i] == 0) {
flag = 0;
printf("The system is not in a safe state.\n");
break;
}
}
if (flag == 1) {
printf("The system is in a safe state.\nSafe sequence is: ");
for (i = 0; i < n - 1; i++) {
printf("P%d -> ", ans[i]);
}
printf("P%d\n", ans[n - 1]);
}
return 0;
}



Comments