代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/101082/6252577
c emalloc.c
/* unsigned emalloc() -
* allocate memory, die on error.
*
* given: number of bytes to allocate.
* does: calls malloc checking malloc return value,
* printing error diagnostic on malloc failure
www.eeworm.com/read/402363/6343592
c pr_loqo.c
/*
* File: pr_loqo.c
* Purpose: solves quadratic programming problem for pattern recognition
* for support vectors
*
* Author: Alex J. Smola
* Created: 10/14/97
www.eeworm.com/read/492904/6413436
c 12cplx.c
#include "stdlib.h"
int cplx(n,m,a,b,alpha,eps,x,xx,k,s,f)
int n,m,k;
void (*s)();
double a[],b[],alpha,eps,x[],xx[],(*f)();
{ double rn(double *);
int r,g,i,j,it,kt,jt,kk;
www.eeworm.com/read/492904/6413536
c 10gear.c
#include "math.h"
#include "stdlib.h"
#include "4rinv.c"
int gear(a,b,hmin,hmax,h,eps,n,y0,k,t,z,ss,f)
void (*f)(),(*ss)();
int n,k;
double a,b,hmin,hmax,h,eps,y0[],t[],z[];
www.eeworm.com/read/487843/6501086
c pr_loqo.c
/*
* File: pr_loqo.c
* Purpose: solves quadratic programming problem for pattern recognition
* for support vectors
*
* Author: Alex J. Smola
* Created: 10/14/97
www.eeworm.com/read/263810/11341366
txt 奇数幻方.txt
#include
#include
#include
const int M=508;
void main()
{
int i,j;
int N;
cout
www.eeworm.com/read/158507/11609298
c pr_loqo.c
/*
* File: pr_loqo.c
* Purpose: solves quadratic programming problem for pattern recognition
* for support vectors
*
* Author: Alex J. Smola
* Created: 10/14/97
www.eeworm.com/read/347811/11635068
c pr_loqo.c
/*
* File: pr_loqo.c
* Purpose: solves quadratic programming problem for pattern recognition
* for support vectors
*
* Author: Alex J. Smola
* Created: 10/14/97
www.eeworm.com/read/157814/11661942
txt ch2_4.txt
void dlbcr(JD *p,int x)
{ JD *s;
s=(JD*)malloc(sizeof(JD));
s->data=x;
s->link=p->link;
p->link=s;
}
www.eeworm.com/read/346994/11706830
c memalloc.c
/* Demonstrates the use of malloc() to allocate storage */
/* space for string data. */
#include
#include
char count, *ptr, *p;
int main( void )
{
/* Allocate a bl