代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/296170/8119059
cpp ea.cpp
/*Simple Genetic Algorithm */
#include
#include
#include
/*The Definition of Constant*/
#define POPSIZE 500//population size
#define MAXIMIZATION 1
www.eeworm.com/read/333760/12661505
cpp 多项式加乘.cpp
#include
#include
using namespace std;
typedef struct LNode
{ float coef;
int expn;
struct LNode *next;
}LNode,*LinkList;
int CreatList(LinkList);
int
www.eeworm.com/read/333254/12693106
cpp binary.cpp
// binary.cpp -- binary file I/O
#include // not required by most systems
#include
#include
#include // (or stdlib.h) for exit()
inline void eatline()
www.eeworm.com/read/246953/12696127
c tst_free.c
#include
#include /* for printf */
void tst_free (void) {
void * mbuf;
printf ("Allocating memory\n");
mbuf = malloc (1000);
if (mbuf == NULL)
www.eeworm.com/read/246953/12696130
c tst_malloc.c
#include
#include /* for printf */
void tst_malloc (void) {
unsigned char xdata *p;
p = malloc (1000); /* allocate 1000 bytes */
i
www.eeworm.com/read/145760/12703496
c freqcnt.c
#include
#include
#include "globleio.h"
//#include "table.h"
/////////////////////////////////////////////////////////////////////////////
#define first_half 0x0001
#define
www.eeworm.com/read/145525/12717011
c mcmpfft.c
#include
#include
#include
#include "msp.h"
void mcmpfft(complex x[],int n,int isign)
{
/*---------------------------------------------------------------------
Ro
www.eeworm.com/read/145525/12717016
c msplfft.c
#include
#include
#include
#include "msp.h"
void msplfft(complex x[],int n,int isign)
{
/*----------------------------------------------------------------------
R
www.eeworm.com/read/145086/12754127
cpp test_exe_prob.cpp
#include
#include
#include
using namespace std;
int execute_probably(float probability)
{
if (probability > 1.0)
return 1;
else if (probability
www.eeworm.com/read/245818/12779320
c mall.c
/* mall.c -- use the Queue interface */
/* compile with queue.c */
#include
#include /* for rand() and srand() */
#include /* for time()