Java -- 银行家算法

参考:ttps://blog.csdn.net/u014634576/article/details/52600826

一、测试类

package operation.main;
import java.util.Scanner;

/**
 * @program: sadd
 * @description: 测试类
 * @author: 
 * @create: 2019-01-02 14:12
 **/

public class TestBankerClass {

    public static void main(String[] args) {
            // TODO code application logic here
            Scanner in = new Scanner(System.in);
            boolean Choose = true;
            String C;
            System.out.println("请输入进程个数:");
            int count = in.nextInt();
            System.out.println("请输入资源种类数:");
            int number = in.nextInt();
            BankerClass T = new BankerClass(count,number);
            T.start(count,number);
            while (Choose == true) {
                T.setRequest(count,number);
                System.out.println("您是否还要进行资源请求:y/n?");
                C = in.next();
                if (C.equals("n")) {
                    Choose = false;
                }
                if(C.equals("y")){
                    Choose = true;
                }
            }
        }
    }

二、方法类

package operation.main;
import java.util.Arrays;
import java.util.Scanner;

/**
 * @program: sadd
 * @description: 方法类
 * @author:
 * @create: 2019-01-02 14:11
 **/

public class BankerClass {
    Scanner in = new Scanner(System.in);
    int[] Available ;//可用资源
    int[][] Max;//进程最大需求量
    int[][] Allocation;//进程已占有资源数
    int[][] Need;//进程还需资源数
    int[][] Request;//进程请求数
    int[] Work;//试分配
    int[] temp;//进程执行顺序

    int num = 0;//进程编号

    /**
     * 含参构造函数,对变量初始化
     * @param proc
     * @param sour
     */
    public BankerClass(int proc,int sour) {
        Available = new int[sour];//可用资源
        Max = new int[proc][sour];//进程最大需求量
        Allocation = new int[proc][sour];//进程已占有资源数
        Need = new int[proc][sour];//进程还需资源数
        Request = new int[proc][sour];//进程请求数
        Work = new int[sour];//试分配
        temp = new int[proc];
    }

    /**
     * 启动方法
     * @param proc
     * @param sour
     */
    public void start(int proc,int sour){//设置各初始系统变量,并判断是否处于安全状态。
        setAvailable(sour);
        setMax(proc,sour);
        setAllocation(proc,sour);
        printSystemVariable(proc,sour);
        SecurityAlgorithm(proc,sour);
    }

    /**
     * 设置Available数组
     * @param sour
     */
    public void setAvailable(int sour){
        System.out.println("请设置各资源的总数:");
        for (int i = 0; i < sour; i++) {
            Available[i] = in.nextInt();
        }
    }

    /**
     * 设置Max矩阵
     * @param proc
     * @param sour
     */
    public void setMax(int proc,int sour) {
        System.out.println("请设置各进程的最大需求矩阵Max:");
        System.out.println("请输入各进程的最大资源需求量:");
        for (int i = 0; i < proc; i++) {
            //System.out.println("请输入进程P" + i + "的最大资源需求量:");
            for (int j = 0; j < sour; j++) {
                Max[i][j] = in.nextInt();
            }
        }
    }

    /**
     * 设置已分配矩阵Alloction
     * @param proc
     * @param sour
     */
    public void setAllocation(int proc,int sour) {
        System.out.println("请设置各进程分配矩阵Alloction:");
        System.out.println("请输入各进程的已分配资源量:");
        for (int i = 0; i < proc; i++) {
            //System.out.println("请输入进程P" + i + "的分配资源量:");
            for (int j = 0; j < sour; j++) {
                Allocation[i][j] = in.nextInt();
            }
        }
        System.out.println("Available = Available - Allocation.");
        System.out.println("Need = Max - Allocation.");
        for (int i = 0; i < sour; i++) {//设置Alloction矩阵
            for (int j = 0; j < proc; j++) {
                Available[i] = Available[i] - Allocation[j][i];
            }
        }
        for (int i = 0; i < proc; i++) {//设置Need矩阵
            for (int j = 0; j < sour; j++) {
                Need[i][j] = Max[i][j] - Allocation[i][j];
            }
        }
    }

    /**
     * 打印矩阵
     * @param proc
     * @param sour
     */
    public void printSystemVariable(int proc,int sour){
        System.out.println("此时资源分配量如下:");
        System.out.println("进程  "+"   Max   "+"   Alloction "+"    Need  "+"     Available ");

        for(int i = 0;i < proc;i++){
            System.out.print("P"+i+"  ");

            for(int j = 0;j < sour;j++){
                System.out.print(Max[i][j]+"  ");
            }

            System.out.print("|  ");

            for(int j=0;j < sour;j++){
                System.out.print(Allocation[i][j]+"  ");
            }

            System.out.print("|  ");

            for(int j=0;j<sour;j++){
                System.out.print(Need[i][j]+"  ");
            }

            System.out.print("|  ");

            if(i==0){
                for(int j=0;j<sour;j++){
                    System.out.print(Available[j]+"  ");
                }
            }
            System.out.println();
        }
    }

    /**
     * 设置请求资源量Request
     * @param proc
     * @param sour
     */
    public void setRequest(int proc,int sour) {

        System.out.println("请输入请求资源的进程编号:");
        num= in.nextInt();//设置全局变量进程编号num
        System.out.println("请输入请求各资源的数量:");
        for (int j = 0; j < sour; j++) {
            Request[num][j] = in.nextInt();
        }

        String str = Arrays.toString(Request[num]);
        System.out.println("即进程P" + num + "对各资源请求Request:(" +
                   str+")");
        BankerAlgorithm(proc,sour);
    }

    /**
     * 银行家算法
     * @param proc
     * @param sour
     */
    public void BankerAlgorithm(int proc,int sour) {
        boolean T = true;
        int b = 0;
        int count = 0;
        int number = 0;
        for(int i = 0;i < sour;i++){
            if(Request[num][i] <= Need[num][i]){//判断Request是否小于Need
                count++;
            }
        }

        for(int i = 0;i < sour;i++){//判断Request是否小于Available
            if(Request[num][i] <= Available[i]){
               number++;
            }
        }

        if (count == sour) {
            if(number == sour) {
                //T = true 时,改变数据
                for (int i = 0; i < sour; i++) {
                    Available[i] -= Request[num][i];
                    Allocation[num][i] += Request[num][i];
                    Need[num][i] -= Request[num][i];
                }
            } else {
                System.out.println("当前没有足够的资源可分配,进程P" + num + "需等待。");
                T = false;
            }
        }else {
            System.out.println("进程P" + num + "请求已经超出最大需求量Need.");
            T = false;
        }

        if(T==true){
            printSystemVariable(proc,sour);
            System.out.println("现在进入安全算法:");
            boolean egg = SecurityAlgorithm(proc,sour);
            if(egg == false){
                System.out.println("进程" + num + "申请资源后,系统进入死锁状态,分配失败!");
                for (int i = 0; i < sour; i++) {
                    Available[i] += Request[num][i];
                    Allocation[num][i] -= Request[num][i];
                    Need[num][i] += Request[num][i];
                }
            }
            else{
                for(int i = 0;i < sour;i++){
                    if(Need[num][i] == 0){
                        b++;
                    }
                }
                if(b == sour){
                    for (int i = 0; i < sour; i++) {
                        Available[i] += Allocation[num][i];
                    }
                    printSystemVariable(proc,sour);
                }
            }
        }
    }

    /**
     * 安全性算法
     * @param proc
     * @param sour
     */
    public boolean SecurityAlgorithm(int proc,int sour) {
        boolean[] Finish = new boolean[proc];//初始化Finish
        for (int i = 0; i < proc; i++) {
            Finish[i] = false;
        }
        boolean lable = false;
        int apply;//计数标志
        int circle = 0;
        int count = 0;//完成进程数
        int[] S = new int[proc];//安全序列
        for (int i = 0; i < sour; i++) {//设置工作向量
            Work[i] = Available[i];
        }
        boolean flag = true;
        while (count < proc) {
            if (flag) {
                System.out.println("进程  " + "   Work  " + "   Alloction " + "    Need  " + "     Work+Alloction "+"  Finish");
                flag = false;
            }

            for (int i = 0; i < proc; i++) {//遍历进程
                apply = 0;
                for (int n = 0; n < sour; n++) {

                    if (Finish[i] == false && Need[i][n] <= Work[n]) {//判断进程是否已试分配成功,
                        // 若没有分配,且资源需求数小于可用资源数,输出
                        apply++;
                        if (apply == sour) {
                            System.out.print("P" + i + "  ");

                            for (int m = 0; m < sour; m++) {
                                System.out.print(Work[m] + "  ");
                            }

                            System.out.print("|  ");

                            for (int j = 0; j < sour; j++) {
                                Work[j] += Allocation[i][j];
                            }

                            Finish[i] = true;//当前进程能满足时,设为true
                            temp[count] = i;
                            count++;//满足,进程数加1

                            for (int j = 0; j < sour; j++) {
                                System.out.print(Allocation[i][j] + "  ");
                            }

                            System.out.print("|  ");

                            for (int j = 0; j < sour; j++) {
                                System.out.print(Need[i][j] + "  ");
                            }

                            System.out.print("|  ");

                            for (int j = 0; j < sour; j++) {
                                System.out.print(Work[j] + "  ");
                            }

                            System.out.print("\t"+" |  ");


                            System.out.print("\t"+Finish[i]);

                            System.out.println();
                        }
                    }
                }
            }
            circle++;

            if (count == proc) {
                lable = true;
                System.out.println("系统是安全的");
                System.out.print("此时存在一个安全序列:");
                for (int i = 0; i < proc; i++) {
                    System.out.print("P" + temp[i]);
                    if (i < proc - 1) {
                        System.out.print("->");
                    }
                }
                System.out.println();
                break;
            }
            if (count < circle) {
                count = proc;
                lable = false;
                for (int i = 0; i < proc; i++) {
                    if (Finish[i] == false) {
                        System.out.println("当前系统处于不安全状态,故不存在安全序列");
                        break;
                    }
                }
            }
        }
        return lable;
    }
}

三、测试结果
1.录入界面
在这里插入图片描述
2.通过安全性算法找出安全序列
在这里插入图片描述
3.p1请求资源:p1发出请求向量Request1(1,0,2),系统按银行家算法进行检查
在这里插入图片描述
4.p4请求资源:p4发出请求向量Request4(3,3,0),系统按银行家算法进行检查:
在这里插入图片描述
5.P0请求资源:p0发出请求向量Request0(0,2,0),系统按银行家算法进行检查:
在这里插入图片描述
6. P2请求资源:p2发出请求向量Request2(6,1,1),系统按银行家算法进行检查:
在这里插入图片描述

  • 9
    点赞
  • 39
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值