확률 이 다른 난수 생 성의 한 가지 사고방식

1178 단어 Algorithm
  :  0-9     ,  0 9         ,
, 10 0,9 1,8 2.....2 8,1 9 , , .
: 0-9 , , ( ) , , .
:

function fun(){
$num = rand(0,9); //10
$num2 = rand(0,9);
($num2<=$num) ? $return.=$num2 : $return.=$num;
return $return;
}
function totalStr($haystack, $needle,$i = 0){//
while(strpos($haystack,$needle) !== false) {
$haystack = substr($haystack, (strpos($haystack,$needle) + 1));
$i++;
}
return $i;
}
for ($i=0;$i<=1000;$i++){
$str .= fun();
}
for ($i=0;$i<=9;$i++){
echo totalStr($str,"$i")."
"; //0-9
}
?>

,
:

function getRand($min,$max) {
$num=rand($min,$max);
return rand($min,$num);
}

, ,

function getRandomByFactor($max,$factor=2){
$c = rand(0,pow($max,$factor));
return $max - ceil(pow($c,1/$factor));
}

좋은 웹페이지 즐겨찾기