代码搜索:Random
找到约 10,000 项符合「Random」的源代码
代码结果 10,000
www.eeworm.com/read/454660/7386040
java cointoss.java
//: operators/CoinToss.java
// TIJ4 Chapter Operators, Exercise 7, page 106
// Write a program that simulates coin-flipping
import java.util.*;
import org.greggordon.tools.*;
public class Co
www.eeworm.com/read/454633/7386555
cpp algo0211.cpp
void CreateList_L(LinkList &L, int n) { // 算法2.11
// 逆位序输入(随机产生)n个元素的值,建立带表头结点的单链线性表L
LinkList p;
int i;
L = (LinkList)malloc(sizeof(LNode));
L->next = NULL; // 先建立一个带头结点
www.eeworm.com/read/453668/7414889
c rscpooldemo.c
/*===========================================================================
FILE: rscpooldemo.c
SERVICES: Sample applet using AEE
DESCRIPTION
This file contains usage examples of followi
www.eeworm.com/read/452408/7441299
txt yichuansuanfa.txt
#include
#include
/* 全局变量 */
struct individual /* 个体*/
{
unsigned *chrom;
www.eeworm.com/read/451385/7466271
m randtx.m
function U = randtx(arg1,arg2)
% RANDTX Text book version of RAND
% Uniformly distributed random numbers
% This M-file exactly reproduces the numerical
% behavior of the builtin RAND function.
%
www.eeworm.com/read/450798/7476636
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/450664/7478610
cpp test_support.cpp
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// -
// ***************
www.eeworm.com/read/449694/7497923
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/449504/7502037
m norm_crnd.m
function y = norm_crnd(n,epsilon,sigma)
% PURPOSE: random numbers from a contaminated normal distribution
% y = (1-epsilon)*N(0,1) + epsilon*N(0,sigma^2)
%------------------------------------------
www.eeworm.com/read/448997/7520541
cpp algo0211.cpp
void CreateList_L(LinkList &L, int n) { // 算法2.11
// 逆位序输入(随机产生)n个元素的值,建立带表头结点的单链线性表L
LinkList p;
int i;
L = (LinkList)malloc(sizeof(LNode));
L->next = NULL; // 先建立一个带头结点