代码搜索:Allocation
找到约 5,034 项符合「Allocation」的源代码
代码结果 5,034
www.eeworm.com/read/209537/15217756
c 2.c
#include
void main()
{
int claim[5][3]={{7,5,3},{3,2,2},{9,0,2},{2,2,2},{4,3,3}};
int allocation[5][3]={{0,1,0},{2,0,0},{3,0,2},{2,1,1},{0,0,2}};
int i,j,k,l=0,count=0;
int need[5][3]
www.eeworm.com/read/209433/15220137
c dynamic.c
# include
# include
# define NUM 10
int main()
{
char *str[NUM]; /* 定义一个字符性的指针数组 */
int t;
/* 为数组中的每个指针分配内存 */
for(t=0; t
www.eeworm.com/read/206693/15292074
cpp yhj.cpp
#include
#define MAX 100
class YHJ
{
int numOfPro;
int numOfTyp;
int Available[MAX];
int Max[MAX][MAX];
int Allocation[MAX][MAX];
int Need[MAX][MAX];
int Save[MAX];
pu
www.eeworm.com/read/206620/15292946
hh allocator.hh
/*---------------------------------------------------------------------------*/
// Baseline Wavelet Transform Coder Construction Kit
//
// Geoff Davis
// gdavis@cs.dartmouth.edu
// http://www.cs.dartm
www.eeworm.com/read/167185/5462123
c ldmsyminv.c
ldmsyminv(M1,M2,pdet,n,flag)
/* this routine appears to give the inverse for non symmetric matrices */
/* produces the inverse of the symmetric matrix M1 in M2 */
/* M2 can =M1, M1 is destroyed unless
www.eeworm.com/read/167185/5462238
c ldmsyminv.c
ldmsyminv(M1,M2,pdet,n,flag)
/* this routine appears to give the inverse for non symmetric matrices */
/* produces the inverse of the symmetric matrix M1 in M2 */
/* M2 can =M1, M1 is destroyed unless
www.eeworm.com/read/473580/6846699
c dijkstra.c
#include
#include
#include
#define N 5
#define M 3
int p[N];
int Available[M]; //可使用资源向量
int Max[N][M]; //最大需求矩阵
int Allocation[N][M];
www.eeworm.com/read/152718/6891260
h fdtdgen.h
/* fdtdgen.h: header file containing macro definitions used by
* numerous functions.
*
* Copyright (C) 2004 John B. Schneider
*
*********************************************************
www.eeworm.com/read/195211/8168444
c dynamic.c
# include
# include
# define NUM 10
int main()
{
char *str[NUM]; /* 定义一个字符性的指针数组 */
int t;
/* 为数组中的每个指针分配内存 */
for(t=0; t
www.eeworm.com/read/395034/8198727
cpp 9-12.cpp
#include
int CircleArea()
{
double* pd=new double;
if(!pd)
{
cout