代码搜索:Allocation
找到约 5,034 项符合「Allocation」的源代码
代码结果 5,034
www.eeworm.com/read/324057/13292741
h node.h
class Node
{
friend class Linklist;
friend void ShowNode(Node &n);
friend bool Insert(Linklist &list,int i,char c);
public:
Node();
Node(Node &n);
Node(int i,char c='0');
Node(int i,ch
www.eeworm.com/read/324057/13292869
h node.h
//node.h
#include
using namespace std;
class Node//定义一个链表结点类
{
public:
Node();//构造函数的声明
Node(Node &n);
Node(int i,char c='0');//构造函数重载1
Node(int i,char c,Node *p,Node *n);//构造函
www.eeworm.com/read/137764/13299807
c npoint.c
#include
#include
#include
#include "NPoint.h"
// Constructor
NPoint::NPoint()
{
dim = 50;
coord = new float[dim];
if (coord==NULL) {
printf("Wa
www.eeworm.com/read/137285/13335108
c nrutil.c
/* nrutil.c - supplied by the Numerical Recipes folks;
minor modifications made by David MacKay.
Copyright remains with the Numerical Recipes authors */
#include
#include
#
www.eeworm.com/read/136959/13351277
c strat.c
/*
** strat.c 10-5-91 Robert Mashlan, public domain
**
** Interface functions to DOS 3.0+ set allocation strategy
** and get allocation strategy functions via int 21h,
** function 58h.
**
**
www.eeworm.com/read/136959/13351831
h snparray.h
/*
** Header file for SNIPPETS array allocation functions
*/
#ifndef SNPARRAY__H
#define SNPARRAY__H
/*
** AMALLOC.C
*/
void *amalloc( int esiz, void *initval, int dims, ... );
/*
** MDALLOC.C
www.eeworm.com/read/136879/13356698
cpp fig13_04.cpp
// Fig. 13.4: fig13_04.cpp
// Demonstrating new returning 0
// when memory is not allocated
#include
int main()
{
double *ptr[ 10 ];
for ( int i = 0; i < 10; i++ ) {
www.eeworm.com/read/136877/13356714
h alloc.h
/*
* alloc.h -- memory allocation defines for cluster
*
* $Header: /usr/src/local/conn/cluster/RCS/alloc.h,v 1.8 1993/01/20 19:00:40 stolcke Exp $
* $Log: alloc.h,v $
* Revision 1.8 1993/01/20
www.eeworm.com/read/314830/13557957
h alloc.h
/*
* alloc.h -- memory allocation defines for cluster
*
* $Header: /usr/src/local/conn/cluster/RCS/alloc.h,v 1.8 1993/01/20 19:00:40 stolcke Exp $
* $Log: alloc.h,v $
* Revision 1.8 1993/01/20
www.eeworm.com/read/312805/13604167
cpp stdafx.cpp
// stdafx.cpp : source file that includes just the standard includes
// Allocation.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdaf