代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/148732/12432275
c glouton.c
/*** Algorithme Glouton ***/
#include
#include
/*** Table p(price) and Table w(weight) ***/
/*** m is the number of total weights ***/
/*** n is the numberof tota
www.eeworm.com/read/130866/14171733
cpp hmmrand.cpp
//hmmrand.cpp
// Purpose: To separate out the random number generator
// functions so that the rest of the code can be
// platform independent.
#include
/*
** hmmgetseed() ge
www.eeworm.com/read/130553/14186976
c cubic.c
/*
** CUBIC.C - Solve a cubic polynomial
** public domain by Ross Cottrell
*/
#include
#include
void SolveCubic(double a,
double b,
www.eeworm.com/read/130150/14205129
cpp hopnet.cpp
//#include
#include
#include
#include
#include
//----------------------------------------------------------------------------
// DEFINES
#define MA
www.eeworm.com/read/128997/14270267
c fsdif.c
#include
#include
#include
#include "shared\fsdioctl.h"
#include "fsdif.h"
/**********************************
*
* STATIC DATA
*
*********************
www.eeworm.com/read/128435/14299088
cpp unit1.cpp
//---------------------------------------------------------------------------
#include
#pragma hdrstop
#include
#include
#include
#include "Unit1.h"
www.eeworm.com/read/128435/14299094
~cpp unit1.~cpp
//---------------------------------------------------------------------------
#include
#pragma hdrstop
#include
#include
#include
#include "Unit1.h"
www.eeworm.com/read/128030/14318619
cpp strplus.cpp
// strplus.cpp
// overloaded '+' operator concatenates strings
#include
using namespace std;
#include //for strcpy(), strcat()
#include //for exit()
www.eeworm.com/read/228495/14381310
c ch5_1.c
#include
#include
typedef struct node /* 树状结构的声明 */
{
int data; /* 结点数据 */
struct node *LCHILD; /*
www.eeworm.com/read/228495/14381347
c ch4_7.c
#include
#include
typedef struct list /* 声明链表结构 */
{
int data; /* 数据域 */
struct list *link; /* 指针域 */