代码搜索:Allocation

找到约 5,034 项符合「Allocation」的源代码

代码结果 5,034
www.eeworm.com/read/141545/13002959

cpp new_far.cpp

#include void main(void) { char far *pointer; do { pointer = new far char[10000]; if (pointer) cout
www.eeworm.com/read/141545/13003075

cpp no_free.cpp

#include void main(void) { char *pointer; do { pointer = new char[10000]; if (pointer) cout
www.eeworm.com/read/328763/13003548

cpp text9.cpp

#include main() { int *p; p=new int; if(!p) { cout
www.eeworm.com/read/140880/13054462

c nrutil.c

/* ** File: nrutil.c ** Purpose: Memory allocation routines borrowed from the ** book "Numerical Recipes" by Press, Flannery, Teukolsky, ** and Vetterling. ** state sequenc
www.eeworm.com/read/240956/13185547

cpp 14_1.cpp

//14_1 #include class Samp{ public: void Setij(int a, int b){i=a,j=b;} ~Samp(){ cout
www.eeworm.com/read/138410/13237070

cpp nrutils.cpp

/* ** File: nrutil.c */ #include #include #include "nrutils.h" static char rcsid[] = "Hidden Markov Model"; void nrerror(char *text) //char *text; { //void
www.eeworm.com/read/239950/13245465

cpp nrutil.cpp

//nrutil.cpp #include "StdAfx.h" #include #include #include //报告错误 void nrerror(char *error_text) { printf("Numerical Recipes run-time error...\n"); printf
www.eeworm.com/read/324149/13283337

java layeridecoder.java

/* * 12/12/99 Initial version. Adapted from javalayer.java * and Subband*.java. mdm@techie.com /*----------------------------------------------------------------------- * This program is f
www.eeworm.com/read/324057/13291647

h node.h

//node.h #include using namespace std; class Node//定义一个链表结点类 { friend class Linklist; public: Node();//构造函数的声明 Node(Node &n); Node(int i,char c='0');//构造函数重载1 Node(int i,char
www.eeworm.com/read/324057/13292427

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);//构造函