代码搜索:Random

找到约 10,000 项符合「Random」的源代码

代码结果 10,000
www.eeworm.com/read/152769/12086658

~pas gadelphi.~pas

unit GADelphi; interface uses Math, SysUtils; type PUnsigned = array of Cardinal; Pint = ^integer; individual = record chrom: PUnsigned; fitness: double; varible: d
www.eeworm.com/read/152769/12086682

pas gadelphi.pas

unit GADelphi; interface uses Math, SysUtils; type PUnsigned = array of Cardinal; Pint = ^integer; individual = record chrom: PUnsigned; fitness: double; varible: d
www.eeworm.com/read/254980/12110145

v mult16.v

// **** Here's a simple, sequential multiplier. Very simple, unsigned.. // Not very well tested, play with testbench, use at your own risk, blah blah blah.. // // // Unsigned 16-bit multiply (m
www.eeworm.com/read/340960/12117936

c csort.c

/************************************************************************ 名称: csort.c 一个动画程序来显示6个排序算法的动作。 运行这个程序要求包含
www.eeworm.com/read/253867/12180034

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/253858/12181878

c ga.c

/********************************************************************/ /* 基于基本遗传算法的函数最优化 SGA.C */ /* A Function Optimizer using Simple Genetic Algorithm */