我来我网
https://5come5.cn
 
您尚未 登录  注册 | 菠菜 | 软件站 | 音乐站 | 邮箱1 | 邮箱2 | 风格选择 | 更多 » 
 

本页主题: 【求助】求达人来看看银行家算法 隐藏签名 | 打印 | 加为IE收藏 | 收藏主题 | 上一主题 | 下一主题

康师傅





性别: 帅哥 状态: 该用户目前不在线
等级: 品行端正
发贴: 149
威望: 0
浮云: 1204
在线等级:
注册时间: 2005-03-03
最后登陆: 2010-09-18

5come5帮你背单词 [ spokesman /'spəuksmən/ n. 发言人,代言人 ]


【求助】求达人来看看银行家算法

操作系统的编程作业,思路完全按照书上对银行家算法的描述,编译能够通过,但运行时会出错,得不到正确的结果。
我也是受同学所托,希望蝈蝈们能帮我看一下,快崩溃了
估计是那个find函数有点问题,即安全性算法的第二步:从进程集合中找到一个能满足条件Finish【i】=false;Need[i,j]<=Work[j];的进程,找到返回1,否则返回0;
Copy code
#include <stdio.h>
#define TRUE 1
#define FALSE 0

int available[256], work[256], finish[256];
int max[256][256], allocation[256][256], need[256][256];

int i, j, temp;

int find(int i, int j)
{
  int row, n, count;

  for (row = 0; row < i; row++) {
    count = 0;
    if (finish[row] == FALSE) {
        for (n = 0; n < j; n++)
          if (need[row][n] <= work[n])
            count++;
          else
            break;
    }
    if (count == j) {
        temp = row;
        return 1;
    }        
  }
  return 0;
}

void security(int id)
{
  int n, cnt;

  for (n = 0; n < j; n++) {
    work[n] = available[n];
  }
  for (n = 0; n < i; n++) {
    finish[n] = FALSE;
  }
  while (find(i, j) == 1) {
    for (n = 0; n < j; n++) {
        work[n] += allocation[temp][n];
    }
    finish[temp] = TRUE;
  }
  for(n = 0; n < i; n++)
    if (finish[n] == TRUE)
        cnt++;
  //printf("\n%d", cnt);
  if (cnt == i)
    printf("\nSystem can allocate the resource to the process P%d.\nIt's safe!\n", id);
  else
    printf("\nSystem can NOT allocate the resource to the process P%d.\nIt's NOT safe!\n", id);
 
}

void banker(int *request, int id)
{
  int n = 0;

  while (n < j) {
    if (request[n] <= need[id][n])
        n++;
    else {
        printf("\nP%d is asking for more resorces than it needs!\n", id);
        return;
    }
  }
  n = 0;
  while (n < j) {
    if (request[n] <= available[n])
        n++;
    else {
        printf("\nP%d is asking for more resorces than it can get!\n", id);
        return;
    }
  }
  for (n = 0; n < j; n++) {
    available[n] -= request[n];
    allocation[id][n] += request[n];
    need[id][n] -= request[n];
  }
  security(id);
}

main()
{
  int n, n1, n2, id, request[256];

  printf("please input the number of process: i = ");
  scanf("%d", &i);
  printf("\nplease input the number of resource: j = ");
  scanf("%d", &j);
  printf("\nplease input the array of Available[]:\n");
  for (n = 0; n < j; n++)
    scanf("%d", &available[n]);
  printf("\nplease input the array Max[][]:\n");
  for (n1 = 0; n1 < i; n1++)
    for (n2 = 0; n2 < j; n2++)
        scanf("%d", &max[n1][n2]);
  printf("\nplease input the array Allocation[][]:\n");
  for (n1 = 0; n1 < i; n1++)
    for (n2 = 0; n2 < j; n2++)
        scanf("%d", &allocation[n1][n2]);
  //the array need[][]
  for (n1 = 0; n1 < i; n1++)
    for (n2 = 0; n2 < j; n2++)
        need[n1][n2] = max[n1][n2] - allocation[n1][n2];
  printf("\nplease input the ID of process which is asking for resource: id = ");
  scanf("%d", &id);
  printf("\nplease input the array of Request[]:\n");
  for (n = 0; n < j; n++)
    scanf("%d", &request[n]);
  banker(request, id);
}



[ 此贴被康师傅在2007-06-18 18:27重新编辑 ]
顶端 Posted: 2007-06-18 18:14 | [楼 主]
zc1984





性别: 帅哥 状态: 该用户目前不在线
头衔: 上帝模式
等级: 荣誉会员
家族: 战略研究所
发贴: 10096
威望: 5
浮云: 0
在线等级:
注册时间: 2004-08-24
最后登陆: 2017-06-08

5come5帮你背单词 [ abrupt /ə'brΛpt/ a. 突然的;粗鲁的,(态度)生硬的 ]


一步一步的跟踪调试……
在北京,做飞信,也在创业,我的微博:https://weibo.com/herozhang
顶端 Posted: 2007-06-18 18:19 | [1 楼]
。。。



性别: 帅哥 状态: 该用户目前不在线
头衔: 禁止发言
等级: 前途无量
发贴: 5053
威望: 0
浮云: 1107
在线等级:
注册时间: 2005-11-09
最后登陆: 2008-03-09

5come5帮你背单词 [ curriculum /kə'rikjuləm/ n. (学校、专业的)全部课程,(取得毕业资格的)必修课程 ]


现在我一看这些东西就头疼

It's really queer I  don't have a GF,for a boy like me could have anybody for the asking.



顶端 Posted: 2007-06-18 18:25 | [2 楼]
康师傅





性别: 帅哥 状态: 该用户目前不在线
等级: 品行端正
发贴: 149
威望: 0
浮云: 1204
在线等级:
注册时间: 2005-03-03
最后登陆: 2010-09-18

5come5帮你背单词 [ temporarily /'tempərərili/ ad. 暂时地,临时地 ]


谢谢ZC,
先吃饭去了
顶端 Posted: 2007-06-18 18:26 | [3 楼]
康师傅





性别: 帅哥 状态: 该用户目前不在线
等级: 品行端正
发贴: 149
威望: 0
浮云: 1204
在线等级:
注册时间: 2005-03-03
最后登陆: 2010-09-18

5come5帮你背单词 [ observer /əb'zə:və/ n. 观察者,观察员,评述者 ]


怎么没有人帮忙看看呐?
顶端 Posted: 2007-06-26 20:10 | [4 楼]
火星



性别: 保密 状态: 该用户目前不在线
等级: 品行端正
发贴: 133
威望: 0
浮云: 1129
在线等级:
注册时间: 2007-05-21
最后登陆: 2008-06-29

5come5帮你背单词 [ requisite /'rekwizit/ a. 必要的,需要的;n. 必需品 ]


debug下吧。。

感觉上是某个循环始终不能达到终止条件导致参数溢出了
楼主快回来。。人民需要你。。
顶端 Posted: 2007-06-27 15:21 | [5 楼]
我来我网·5come5 Forum » 程序员之家

Total 0.011353(s) query 5, Time now is:11-23 12:15, Gzip enabled
Powered by PHPWind v5.3, Localized by 5come5 Tech Team, 黔ICP备16009856号