-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathBankers.java
208 lines (179 loc) · 6.9 KB
/
Bankers.java
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
/*
PROGRAM : BANKER'S ALGORITHM
Author : Yukta peswani
Website : www.yuktapeswani.tk
*/
import java.io.*;
import java.util.*;
class Bankers {
static int safe[] = new int[20];
static int unsafe[] = new int[20];
static boolean safety(int available[], int allocated[][], int need[][], int n1, int m1) {
int n = n1;
int m = m1;
int nd[][] = new int[n][m];
int work[] = new int[m];
int alloc[][] = new int[n][m];
/* Populate the work array with the passed available array */
for (int i = 0; i < m; i++) {
work[i] = available[i];
}
/** Print Available array */
System.out.println("*** Available Array /n");
for( int i = 0; i < work.length; i++ ) {
System.out.println( work[i] + " " );
}
/* Populate the alloc array with the passed allocated array */
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
alloc[i][j] = allocated[i][j];
}
}
/** Print Allocated array */
System.out.println("*** Allocated Array /n");
for( int i = 0; i < alloc.length; i++ ) {
for( int j = 0; j < alloc[i].length; j++ ) {
System.out.print( alloc[i][j] + " " );
}
System.out.println();
}
/* Populate the nd array with the passed need array */
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
nd[i][j] = need[i][j];
}
}
/** Print Need Array */
System.out.println("*** Need Array \n");
for( int i = 0; i < nd.length; i++ ) {
for( int j = 0; j < nd[i].length; j++ ) {
System.out.print( nd[i][j] + " " );
}
System.out.println();
}
/* Hold the finished processes */
boolean finish[] = new boolean[n];
/* Initialize the finished array to false */
for (int i = 0; i < n; i++) {
finish[i] = false;
}
/* Two counters for the two-dimensional array */
int check = 0;
int check1 = 0;
/**
* Chek for safey algorithm.
*
* 1. Work = available.
* Finish = false.
*
* 2. Find an i such that,
* Finish[i] = false and Needi < Work.
* If no such Item, go step 4
*
* 3. Work = Work + Allocationi
* Finish[i] = true, then repeat step 2
*
* 4. If Finish[i] = true for all i , then
* the system is in safe.
*/
do {
for (int i = 0; i < n; i++) {
boolean flag = true; /* Temp Flag */
if ( finish[i] == false ) {
for (int j = 0; j < m; j++) {
if (work[j] < nd[i][j]) {
flag = false;
}
}
/* If available resources are greater than needed, then assign allocated resources
for processing */
if ( flag ) {
for (int j = 0; j < m; j++) {
work[j] += alloc[i][j];
}
safe[check] = i; /* Put the process number (Pi) in the safe array */
check++;
finish[i] = true;
} else {
unsafe[check] = i; /* Put the process number (Pi) in the safe array */
}
}
}
check1++; /* Navigate to the next process */
} while ( check < n && check1 < n);
if (check > n) {
return false;
} else {
return true;
}
} // END-safety() function
/** Main Function */
public static void main(String args[]) throws IOException {
InputStreamReader isr = new InputStreamReader(System.in);
BufferedReader obj = new BufferedReader(isr);
int n, m; /* n = Number of Processes, m = Number of resources. */
System.out.println("enter no. of processes: "); /* Enter number of processes. */
n = Integer.parseInt(obj.readLine());
System.out.println("enter no. of resources: "); /* Enter number of Resources. */
m = Integer.parseInt(obj.readLine());
int availableArr[] = new int[m]; // Array of available instances
for (int i = 0; i < m; i++) {
System.out.println("enter no. of available instances resources: " + i);
/* Enter number of Available instances. */
availableArr[i] = Integer.parseInt(obj.readLine());
}
System.out.println("enter allocation of resources: ");
/* Allocation Array. */
int allocArr[][] = new int[n][m];
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
/* Enter allocation of instances of resources. */
System.out.println("enter allocation instances of resources: " + j + " for process p" + i);
/* Enter allocation of instances of resources. */
allocArr[i][j] = Integer.parseInt(obj.readLine());
}
}
System.out.println("enter maximum of resources: ");
int maxArr[][] = new int[n][m];
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
System.out.println("enter max instances of resources:" + j + "for process p" + i);
/* Enter max instances of resources for a given resource. */
maxArr[i][j] = Integer.parseInt(obj.readLine());
}
}
/** Print max Array */
System.out.println("*** max Array \n");
for( int i = 0; i < maxArr.length; i++ ) {
for( int j = 0; j < maxArr[i].length; j++ ) {
System.out.print( maxArr[i][j] + " " );
}
System.out.println();
}
/* Needed Array. */
int needArr[][] = new int[n][m];
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
/* Populate Need Array */
needArr[i][j] = maxArr[i][j] - allocArr[i][j];
}
}
/**
* Now, we have the availableArr, maxArr, neededArr, and allocArr
* Pass them to function safety() for processing
*/
if ( safety( availableArr, allocArr, needArr, n, m )) {
System.out.println("System in Safe State");
System.out.print("System's Safe sequence:");
for (int i = 0; i < n; i++) {
System.out.print( "P" + safe[i] + " " );
}
} else {
System.out.println("System in UnSafe State");
System.out.print("System's Safe sequence:");
for (int i = 0; i < n; i++) {
System.out.print( "P" + unsafe[i] + " " );
}
}
}
}