资源简介
java实现银行家算法
1、给出系统可用资源向量(例如:系统可用资源=(5,3,8,2,10))。
2、若干进程最大需求矩阵如下表所示:
3、采用时间片轮转法调度进程。
4、进程执行时提出资源请求(可利用随机数给出或从键盘输入)。
5、判断资源是否可以安全分配,要求进程每提出一个资源请求,都要进行安全
代码片段和文件信息
package process;
import java.util.Scanner;
import javax.swing.JOptionPane;
public class Bank {
public static int Max[][] = { {33505} {53812} {21204}
{40705 } {32629} };
public static int AVAILABLE[] = {538210 };
public static int ALLOCATION[][] = { { 0 0 0 00} { 0 0 000 } { 0 0 000 }
{ 0 0 000 } { 0 0 000 } };
public static int NEED[][] = { {33505} {53812} {21204}
{40705 } {32629} };
public static int Request[] = { 0 0 000 };
public static int M = 5 N = 5;
int FALSE = 0;
int TRUE = 1;
public void showdata() {
int i j;
System.out.print(“系统可用的资源数为:/n“);
for (j = 0; j < N; j++) {
System.out.println(“资源“ + j + “:“ + AVAILABLE[j] + “ “);
}
System.out.println();
System.out.println(“各进程还需要的资源量:“);
for (i = 0; i < M; i++) {
System.out.println(“进程“ + i + “:“);
for (j = 0; j < N; j++) {
System.out.print(“资源“ + j + “:“ + NEED[i][j] + “ “);
}
System.out.println();
}
System.out.print(“各进程已经得到的资源量: /n“);
for (i = 0; i < M; i++) {
System.out.print(“进程“);
System.out.print(i);
for (j = 0; j < N; j++) {
System.out.print(“资源“ + j + “:“ + ALLOCATION[i][j] + “ “);
}
System.out.println();
}
}
public void changdata(int k) {
int j;
for (j = 0; j < N; j++) {
AVAILABLE[j] = AVAILABLE[j] - Request[j];
ALLOCATION[k][j] = ALLOCATION[k][j] + Request[j];
NEED[k][j] = NEED[k][j] - Request[j];
}
};
public void rstordata(int k) {
int j;
for (j = 0; j < N; j++) {
AVAILABLE[j] = AVAILABLE[j] + Request[j];
ALLOCATION[k][j] = ALLOCATION[k][j] - Request[j];
NEED[k][j] = NEED[k][j] + Request[j];
}
};
public void free(int k) {
for (int j = 0; j < N; j++) {
AVAILABLE[j] = AVAILABLE[j] + ALLOCATION[k][j];
System.out.println(“释放“ + k + “号进程的“ + j + “资源!/n“);
}
}
public int check0(int k) {
int j n = 0;
for (j = 0; j < N; j++) {
if (NEED[k][j] == 0)
n++;
}
if (n == 5)
return 1;
else
return 0;
}
public int chkerr(int s) {
int WORK;
int FINISH[] = new int[M] temp[] = new int[M];
int i j k = 0;
for (i = 0; i < M; i++)
FINISH[i] = FALSE;
for (j = 0; j < N; j++) {
WORK = AVAILABLE[j];
i = s;
while
相关资源
- java串口通信全套完整代码-导入eclip
- JNA所需要的jar包
- jsonarray所必需的6个jar包.rar
- 三角网构TIN生成算法,Java语言实现
- utgard用到的jar包
- java代码编写将excel数据导入到mysql数据
- Java写的cmm词法分析器源代码及javacc学
- JAVA JSP公司财务管理系统 源代码 论文
- JSP+MYSQL旅行社管理信息系统
- commons-beanutils-1.8.3.jar
- 推荐算法的JAVA实现
- 基于Java的酒店管理系统源码(毕业设
- java-图片识别 图片比较
- android毕业设计
- ehcache-core-2.5.1.jar
- android-support-v4.jar已打包进去源代码
- java23种设计模式+23个实例demo
- java Socket发送/接受报文
- JAVA828436
- java界面美化 提供多套皮肤直接使用
- 在线聊天系统(java代码)
- 基于Java的图书管理系统807185
- java中实现将页面数据导入Excel中
- java 企业销售管理系统
- java做的聊天系统(包括正规课程设计
- Java编写的qq聊天室
- 商店商品管理系统 JAVA写的 有界面
- JAVA开发聊天室程序
- 在linux系统下用java执行系统命令实例
- java期末考试试题两套(答案) 选择(
评论
共有 条评论