代码搜索:Random
找到约 10,000 项符合「Random」的源代码
代码结果 10,000
www.eeworm.com/read/293056/8316302
c r_random.c
/*
R_RANDOM.C - random objects for RSAEURO
Copyright (c) J.S.A.Kapp 1994 - 1995.
RSAEURO - RSA Library compatible with RSAREF(tm) 2.0.
All functions prototypes are the Same as for RSAREF
www.eeworm.com/read/293056/8316307
h r_random.h
/*
R_RANDOM.H - header file for R_RANDOM.C
Copyright (c) J.S.A.Kapp 1994 - 1995.
RSAEURO - RSA Library compatible with RSAREF(tm) 2.0.
All functions prototypes are the Same as for RSAREF(tm).
www.eeworm.com/read/392307/8350662
java random_value.java
package mypackage;
class random_value {
int value[];
int total;
random_value(int first, int last){
int i;
total=last-first+1;
value=new int[total];
for(i=0;i
www.eeworm.com/read/392307/8350683
class random_value.class
www.eeworm.com/read/173584/9649605
fla random_017.fla
www.eeworm.com/read/369134/9661906
h wuzhanji_random.h
/*****************************************************/
/* random number functions
/*
/*
/*******************************************************/
/* uniform random number generator
gen
www.eeworm.com/read/368337/9701384
tex random-walk.tex
www.eeworm.com/read/171168/9768475
lua random distribution.lua
-- Random Distribution Script
-- Robert Edwards 2003
-- This script is in the public domain and can be used for any purpose
-- I just hope its useful as an example of binary IO in lua for mappy
www.eeworm.com/read/366869/9795311
cpp random1.cpp
/* The following code example is taken from the book
* "The C++ Standard Library - A Tutorial and Reference"
* by Nicolai M. Josuttis, Addison-Wesley, 1999
*
* (C) Copyright Nicolai M. Josutti