代码搜索:Allocation
找到约 5,034 项符合「Allocation」的源代码
代码结果 5,034
www.eeworm.com/read/319982/13437467
cpp 银行家算法.cpp
#include "string.h"
#include "iostream.h"
#define M 5 //总进程数
#define N 10 //总资源数
#define FALSE 0
#define TRUE 1
//M个进程对N类资源最大资源需求量
int MAX[M][N]={{7,5,3,5,6,7,3,4,7,4},{3,4,8,7,
www.eeworm.com/read/318285/13482108
txt readme.txt
http://web.mit.edu/brzezin/www/359/matlab/
MIMO OFDM Simulator:
OFDM.m: OFDM Simulator (outer function)
create_channel.m: Generates a Rayleigh fading frequency-selective channel, paramet
www.eeworm.com/read/316786/13517816
c dynamic.c
# include
# include
# define NUM 10
int main()
{
char *str[NUM]; /* 定义一个字符性的指针数组 */
int t;
/* 为数组中的每个指针分配内存 */
for(t=0; t
www.eeworm.com/read/316617/13519793
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/316424/13522999
c bank.c
#include
#define state_ready 0
#define state_waiting -1
#define state_finish 1
#define resource 10
#define process 4
#define inputfile "in.txt"
#define outputfile "out.txt"
#d
www.eeworm.com/read/316424/13523002
c suffle.c
#include
#define state_ready 0
#define state_waiting -1
#define state_finish 1
#define resource 10
#define process 4
#define inputfile "in.txt"
#define outputfile "out.txt"
#d
www.eeworm.com/read/315632/13539194
cpp 银行家算法.cpp
#include
using namespace std;
int AVAILABLE[100 ]; /*可用资源数组*/
int MAX[50 ][100 ]; /*最大需求矩阵*/
int ALLOCATION[50 ][100 ];
www.eeworm.com/read/313736/13581649
cpp main.cpp
#include
#include
#include
using namespace std;
#define FALSE 0
#define TRUE 1
typedef vector vec;
int row;
int column;
//------------------------
www.eeworm.com/read/312805/13604165
txt readme.txt
========================================================================
CONSOLE APPLICATION : Allocation
========================================================================
AppWiza
www.eeworm.com/read/312063/13619663
cpp banker.cpp
// banker.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include
using namespace std;
#define MAXPROCESS 50 /*最大进程数*/
#d