代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/265028/6997212
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/462726/7197475
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/462721/7197509
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/458870/7286369
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/458870/7286469
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/449088/7518499
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/449088/7518599
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/448821/7525209
cpp guangyinijuzhen.cpp
#include
#include
#include
//矩阵输出
void pr(double *a,int n,int m)
{
int i,j;
for(i=0;i