代码搜索:Random
找到约 10,000 项符合「Random」的源代码
代码结果 10,000
www.eeworm.com/read/440070/7694935
f random.f
www.eeworm.com/read/439595/7705333
cpp random.cpp
#include "Random.h"
/***********************************************************/
/* Returns a uniform RV in (0,1) */
/* Any seed
www.eeworm.com/read/439595/7705337
h random.h
/*definitions used by the random functions*/
#ifndef RANDOM
#define RANDOM
#include
#define Ia 16807
#define Im 2147483647
#define Am (1.0/Im)
#define Iq 127773
#define
www.eeworm.com/read/439595/7705349
obj random.obj
www.eeworm.com/read/439145/7716358
c random.c
/*
Copyright (c) 2006, 2007 Dmitry Butskoy
License: GPL v2 or any later
See COPYING for the status of this software.
*/
#include
#include
www.eeworm.com/read/437916/7739698
exe random.exe
www.eeworm.com/read/437916/7739699
asm random.asm
DATA SEGMENT
CC DB '+'
ww db '-'
GG DB '='
II DB 0DH,0AH,'$'
AA DB 5 DUP(?)
www dw 0
ghh db '0',0dh,0ah,'$'
bnm dw 0
DATA ENDS
STACK SEGMENT
D
www.eeworm.com/read/437619/7744660
c random.c
/* Maintain source of random numbers for cryptographic keys, etc
* This is inherently machine dependent code
*/
#include "stdio.h"
#include
#include "global.h"
#include "timer.h"
#inc
www.eeworm.com/read/436812/7762282
cc random.cc
/***************************************************************************
Random.cc - description
-------------------
begin
www.eeworm.com/read/436812/7762285
h random.h
#ifndef RANDOM_H
#define RANDOM_H
#include
#include
#include
using namespace std;
class Random {
private:
/* constants for a pseudo-random number generator,
for