代码搜索:Random
找到约 10,000 项符合「Random」的源代码
代码结果 10,000
www.eeworm.com/read/138504/13234400
cxx random.cxx
// random.cpp A collection of Random number generators
// (c) Copyright 1995, Everett F. Carter Jr.
// Permission is granted by the author to use
// this
www.eeworm.com/read/138504/13234422
hpp random.hpp
// random.hpp A collection of random number generator objects
// (c) Copyright 1995, Everett F. Carter Jr.
// Permission is granted by the author to use
//
www.eeworm.com/read/138383/13238401
h random.h
/*
* ASTL - the Automaton Standard Template Library.
* C++ generic components for Finite State Automata handling.
* Copyright (C) 2000-2003 Vincent Le Maout (vincent.lemaout@chello.fr).
*
* This
www.eeworm.com/read/240003/13240959
h random.h
//------Constants for the Mersenne Twister---------------------------------
// Period parameters
#define N 624
#define M 397
#define MATRIX_A 0x9908b0df // constant vector a
#define UPPER_MASK
www.eeworm.com/read/324802/13243411
c random.c
/*
** 2001 September 15
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiven
www.eeworm.com/read/138258/13244277
c random.c
/*
* Random number routines: rnd and seedrnd
*/
#include
#include //for the seedrnd() function
int rnd(int range);
void seedrnd(void);
/* Generate a random value */
www.eeworm.com/read/138257/13244791
c random.c
#include
#include
#include //for seeding randomizer
int rnd(int range);
void seedrnd(void);
void main()
{
int x;
seedrnd();
//display 100 random numbe
www.eeworm.com/read/138119/13259092
c random.c
/*
TurboC, a library for porting Borland Turbo C to GNU gcc.
Copyright 2002 Ronald S. Burkey
This library is free software; you can redistribute it and/or
modify it under the terms of the GN
www.eeworm.com/read/239624/13265593