代码搜索:Allocation
找到约 5,034 项符合「Allocation」的源代码
代码结果 5,034
www.eeworm.com/read/276172/10759007
txt yhj).txt
include
using namespace std;
#define MAXPROCESS 50 /*最大进程数*/
#define MAXRESOURCE 100 /*最大资源数*/
int AVAILABLE[MAXRESOURCE];
www.eeworm.com/read/275269/10825848
txt yinhangjia.txt
计算机操作系统课程设计
班级 04计算机*班 姓名 张* 学号 04103074**
课程设计起止日期 2007.01.20-2007.01.24
实习地点 赛博北楼305(嵌入式系统实验室)
课程设计题目 共享资源分配与银行家算法
一、课程设计目的和意义
此次课程设计的主要内容是模拟实现资源分配。同
www.eeworm.com/read/275044/10837829
c dynamic.c
# include
# include
# define NUM 10
int main()
{
char *str[NUM]; /* 定义一个字符性的指针数组 */
int t;
/* 为数组中的每个指针分配内存 */
for(t=0; t
www.eeworm.com/read/274170/10886390
c dynamic.c
# include
# include
# define NUM 10
int main()
{
char *str[NUM]; /* 定义一个字符性的指针数组 */
int t;
/* 为数组中的每个指针分配内存 */
for(t=0; t
www.eeworm.com/read/272967/10934918
usr cnc.usr
PCB N.C.DRILL Definition File
# EXCELLON FORMAT
FORMAT 4
MACHINE EXCELLON
TYPE NCDRILL
CODE ASCII
UNITS IMPERIAL
FILEUNITS IMPERIAL
C
www.eeworm.com/read/272725/10946464
cpp yhj.cpp
#include
#include
#include
int Available[50],Allocation[100][100],Max[100][100];
//可分配资源量,已分配资源量,最大资源需求量
int Need[100][100],Request[40],Work[50],Finish[100],
www.eeworm.com/read/416373/11031511
cpp 银行家算法.cpp
#include "string.h"
#include "iostream"
#include "iomanip"
using namespace std;
#define FALSE 0
#define TRUE 1
#define W 10
#define R 20
int FINISH[W];
int M ; //总进程数
www.eeworm.com/read/465477/6936899
txt rfc2471.txt
Network Working Group R. Hinden
Request for Comments: 2471 Nokia
Obsoletes: 1897 R. Fink
Cate
www.eeworm.com/read/469089/6977265
cpp 死锁.cpp
#include
#include
#define N 5
#define M 3
#define TRUE 1
#define FALSE 0
int Max[N][M];
int Allocation[N][M];
int Need[N][M];
int Available[M];
int Request[M];
int
www.eeworm.com/read/465792/7046104
cpp 银行家算法.cpp
#include
using namespace std;
#define MAXPROCESS 50 /*最大进程数*/
#define MAXRESOURCE 100 /*最大资源数*/
int AVAILABLE[MA