搜索资源列表
CastPoints
- 帮同学写的代码,把一块区域随即分割为固定大小的若干区域,并在每个区域随机种子,可以做位实验数据,希望能给其他朋友有所帮助-help students write the code, then a regional division of the fixed size of a number of regional and random seeds in each region that can be done at the experimental data, in hopes of givin
randbbuid
- 此文件利用最新的加斯拉奇算法制造随机种子给随机数的数理统计达到最优化
testZY2
- rand 函数 取系统时间,得到指定范围的随机数值. 避免伪随机数. 使用了随机种子.
如何对字符串进行加密解密
- 如何对字符串进行加密解密 本人在操作数据库时,考虑到该数据库还有可能被其他软件打开,所以想能否有另外一种方式把数据库中数据进行加密呢,也就是说,即使别人利用其他的软件打开了该数据库,看到的也是一片乱码,根本不知道数据库进而是什么内容。出于这种情况,本人利用VB中自带 RND()函数的功能编写了如下加密解密方法。 当RND()的参数(我们称它为种子)为负值时,同一种子产生同一个随机序列,同时VB还具有强大的二进制技术功能。 这样我们可以按以下方法实现字符串内容的加密解密。-How to encod
randfun
- MATLAB 随机种子工具箱,全,十分好用,大家交流-MATLAB random seed kit, full, very easy to use, to share
prime
- 产生大素数。以时间作为随机数生成的种子,随机生成大素数。-Generate large prime numbers. With time as the random number generator seeds, randomly generated large prime numbers.
genprime
- 基于大数库miracl的快速产生大素数的c语言实现(输入的随机种子不同产生的大素数也不同)-Based on the rapid creation of large numbers library miracl large prime numbers c-language implementation (a different type of random seed generated large prime numbers are different)
Random
- 生成随机数种子。变换不同的随机序列,生成1-num的整数 -Generated random number seed. Transform different random sequence, to generate the integer 1-num
sort
- 先设定随机数发生公式的种子值,根据这个产生一个随机的数组,然后通过插入排序进行排序,并计算运行时间-First occurrence of the formula set random number seed value, the basis of this result in a random array, and then sort through the insertion sort, and calculate the running time
Create_Random
- 以时间为种子产生4位随机数,整型的,以时间为种子,就不会重复了-Time for seed to produce four random number, integer, and time for the seed, would not duplicate the
dypwd
- 动态令牌是技术领先的一种双因素强身份认证体系,采用用户PIN码+动态令牌码构成完整用户口令,令牌码由令牌内置唯一种子和当前时间通过伪随机算法生成,每分钟改变一次,而且是一次性密码(密码使用后立即失效,不能重复使用)。-Dynamic Password Generator
uuu
- Java生成Voronoi图 (1)产生二维空间随机种子(数量预设) (2)对种子膨胀,直至空间结点全部被标记 (2.1)标记归属与距离值 (2.2)并记录上下次膨胀结点 (3)扫描二维空间结点,找出距结点 (4)在控件上给出种子与Voronoi图 -Voronoi diagram generation Java (1) generate a random seed of two-dimensional space (the number of default) (2
VoronoiDiagram
- 计算几何课程中voronoidigram的实现程序, 可随机输入种子点,然后生成voronoi 图-Computational geometry course in the realization of the procedure voronoidigram can enter a random seed point, and then generate voronoi diagram
test_22.2
- 2、 编写一个产生1000个1到10范围内的随机数的程序。不要保存或打印数字,仅打印每个数被产生了多少次。让程序对10个不同的种子值进行计算。数字出现的次数相同吗?可以使用自定义的随机函数或ANSI C中的函数rand()和srand()。这是一个测试特定随机数发生器的随机性的方法。-1000 arising from the preparation of a 1-10 range of the random number procedure. Do not save or print the
test_22.3
- 3、 编写一个函数。该函数接受下列参数:一个int数组的名称,数组大小和一个代表选取次数的值。然后函数从数组中随机选择指定数量的元素并打印他们。每个元素最多选择一次(模拟抽奖或挑选陪审成员)。另外,请使用time()或其它类似的函数生成种子。以便srand()函数初始化随机数生成器rand()。编写一个简单的程序测试该函数。-The preparation of a function. The function accepts the following parameters: the name
RandomRealNumber
- 用不同的种子和方法去产生随机数,像多项巡回随机产生器-Generate different random numbers using different methods like MRG(Multiple Recursive Generator )
random-c
- C语言实现的随机数产生方法,对一些需要产生随机种子的程序有帮助。主要是包括均匀分布、高斯分布随机数的产生。-C language implementation of the random number generator means, for some procedures need to generate random seeds help. Mainly include the uniform distribution, Gaussian distribution generation.
randfunction
- rand()会返回一随机数值,范围在0至RAND_MAX 间。在调用此函数产生随机数前,必须先利用srand()设好随机数种子,如果未设随机数种子,rand()在调用时会自动设随机数种子为1。-随即函数
large-integer-multiplication
- 链表实现大整数乘法,其中以时间为种子随机产生1000位数,经过暂停继续产生第二个1000位数,使用回溯递归做乘法。-List realize large integer multiplication, in which time is 1000 bits randomly generated seed, after the suspension continue to generate a second 1000 digits, using recursive backtracking to d
素数判断
- 生成大素数,利用了时间随机种子。并且用Miller_Rabin测试法,判定素数(Generating large prime numbers takes advantage of temporal random seeds. And the Miller_Rabin test is used to determine the prime number)