-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBankersAlgo.cpp
More file actions
99 lines (86 loc) · 2.39 KB
/
BankersAlgo.cpp
File metadata and controls
99 lines (86 loc) · 2.39 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#include <stdio.h>
int main() {
int n, m, i, j, k;
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];
for (i = 0; i < n; i++) {
printf("\nEnter the allocation matrix for process P%d: ", i);
for (j = 0; j < m; j++) {
scanf("%d", &alloc[i][j]);
}
}
for (i = 0; i < n; i++) {
printf("\nEnter the maximum matrix for process P%d: ", i);
for (j = 0; j < m; j++) {
scanf("%d", &max[i][j]);
}
}
printf("\nEnter the available resources: ");
for (j = 0; j < m; j++) {
scanf("%d", &avail[j]);
}
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];
}
}
printf("\nAllocation Matrix:\n");
for (i = 0; i < n; i++) {
for (j = 0; j < m; j++) {
printf("%d ", alloc[i][j]);
}
printf("\n");
}
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("\nThe system is not in a safe state.\n");
break;
}
}
if (flag == 1) {
printf("\nSafe Sequence: ");
for (i = 0; i < n - 1; i++) {
printf("P%d -> ", ans[i]);
}
printf("P%d\n", ans[n - 1]);
printf("\nNeed Matrix:\n");
for (i = 0; i < n; i++) {
for (j = 0; j < m; j++) {
printf("%d ", need[i][j]);
}
printf("\n");
}
}
return 0;
}