代码搜索:Random
找到约 10,000 项符合「Random」的源代码
代码结果 10,000
www.eeworm.com/read/264291/11322944
h randomwalk.h
//
#ifndef RANDOM_WALK_H
#define RANDOM_WALK_H
#include "omnetpp.h"
#include "costants.h"
#include "physic.h"
class RandomWalk : public cSimpleModule
{
//Macro that contains the costructor,destr
www.eeworm.com/read/263231/11370819
c ycsf.c
/********************************************************************/
/* 基于基本遗传算法的函数最优化 SGA.C */
/* A Function Optimizer using Simple Genetic Algorithm */
www.eeworm.com/read/262879/11387311
i defns.i
/*************************************************************************/
/* */
/* Definitions used in C4.5 */
/* ------------------------ */
/* */
/*********
www.eeworm.com/read/406664/11437992
c alg36.c
#include
#include
#include
int main()
{
vector< int, allocator > vec;
for ( int ix = 0; ix < 20; ix++ )
vec.push_back( ix );
random_shuffle(
www.eeworm.com/read/405295/11466630
cpp mother.cpp
/************************** MOTHER.CPP ****************** AgF 1999-03-03 *
* 'Mother-of-All' random number generator *
*
www.eeworm.com/read/405295/11466634
cpp ex-ran.cpp
/*************************** EX-RAN.CPP ********************* AgF 2001-11-11 *
* *
* Example showing how to use random numb
www.eeworm.com/read/405283/11466882
c 编随机数.c
/*自编随机数*/
#include"sys\types.h"
#include"sys\timeb.h"
#include
#define ALPHA 3.95 /*宏定义ALPHA值为3.95*/
double init_value(void);
double random(void);
void main()
{
float rdn
www.eeworm.com/read/404076/11491994
c fig10_54.c
/* Bad random number generator */
#include
/* START: fig10_54.txt */
static unsigned long Seed = 1;
#define A 48271L
#define M 2147483647L