Heim > Backend-Entwicklung > PHP-Tutorial > PHP生成n个不重复的随机整数

PHP生成n个不重复的随机整数

WBOY
Freigeben: 2016-06-20 13:04:32
Original
1194 Leute haben es durchsucht

PHP生成n个不重复的随机整数

需要生成某段整数区间的n个不重复的随机整数。具体怎么设计函数呢?

将随机数存入数组,再在数组中去除重复的值,即可生成一定数量的不重复随机数。

PHP生成n个不重复的随机整数实现代码如下:

<?php<br />/*<br />* array unique_rand( int $min, int $max, int $num )<br />* 生成一定数量的不重复随机整数<br />* $min 和 $max: 指定随机数的范围<br />* $num: 指定生成数量<br />*/<br />function unique_rand($min, $max, $num) {<br />    $count = 0;<br />    $return = array();<br />    while ($count < $num) {<br />        $return[] = mt_rand($min, $max);<br />        $return = array_flip(array_flip($return));<br />        $count = count($return);<br />    }<br />    shuffle($return);<br />    return $return;<br />}<br /><br />$arr = unique_rand(1, 25, 16);<br />sort($arr);<br /><br />$result = '';<br />for($i=0; $i < count($arr);$i++)<br />{<br />	$result .= $arr[$i].',';<br />}<br />$result = substr($result, 0, -1);<br />echo $result;<br />?>
Nach dem Login kopieren


注意:

1、生成随机数时用了 mt_rand() 函数。这个函数生成随机数的平均速度要比 rand() 快四倍。

2、去除数组中的重复值时用了“翻翻法”,就是用 array_flip() 把数组的 key 和 value 交换两次。这种做法比用 array_unique() 快得多。

3、返回数组前,先使用 shuffle() 为数组赋予新的键名,保证键名是 0-n 连续的数字。如果不进行此步骤,可能在删除重复值时造成键名不连续,给遍历带来麻烦。


Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage