PHP probabilistic algorithm for lottery programs and random ads _php tutorial

Source: Internet
Author: User
Then we will certainly design the algorithm in the program, that is, in accordance with a certain probability for users to receive prizes. Let's take a look at two probability algorithm functions.

Algorithm One
Copy the Code code as follows:
/**
* Full probability calculation
*
* @param array $p Array (' A ' =>0.5, ' B ' =>0.2, ' C ' =>0.4)
* @return String returns the key of the above array
*/
function Random ($ps) {
Static $arr = Array ();
$key = MD5 (serialize ($ps));

if (!isset ($arr [$key])) {
$max = Array_sum ($ps);
foreach ($ps as $k = = $v) {
$v = $v/$max * 10000;
for ($i =0; $i < $v; $i + +) $arr [$key] = $k;
}
}
return $arr [$key][mt_rand (0,count ($arr [$key])-1)];
}
Algorithm two
Copy the Code code as follows: function Get_rand ($PROARR) {
$result = ";

The total probability accuracy of probability array
$proSum = Array_sum ($PROARR);

Probability array loop
foreach ($proArr as $key = = $proCur) {
$randNum = Mt_rand (1, $proSum);
if ($randNum <= $proCur) {
$result = $key;
Break
} else {
$proSum-= $proCur;
}
}
Unset ($PROARR);

return $result;
}
The above code is a classical probability algorithm, $PROARR is a pre-set array, assuming that the array is: Array (100,200,300,400), the beginning is from the probability range of 1,1000 to filter whether the first number within the probability range of his occurrence, if not, then the probability of space minus , that is, the value of K minus the probability space of the first number, in this case, minus 100, that is, the second number is filtered within the 1,900 range. In this way, there will always be a number to meet the requirements. is equivalent to go to a box to touch things, the first is not, the second is not, the third is not, then the last one must be. The algorithm is simple and very efficient, and the key is that it has been used in our previous projects, especially in large data volumes.
Next we configure the awards through PHP.
Copy CodeThe code is as follows:
$prize _arr = Array (
' 0 ' = = Array (' ID ' =>1, ' prize ' = ' tablet ', ' V ' =>1),
' 1 ' = = Array (' ID ' =>2, ' prize ' = ' digital camera ', ' V ' =>5),
' 2 ' = = Array (' ID ' =>3, ' prize ' = ' speaker device ', ' V ' =>10),
' 3 ' = = Array (' ID ' =>4, ' prize ' = ' 4G ', ' V ' =>12),
' 4 ' = = Array (' ID ' =>5, ' prize ' = ' 10Q ', ' V ' =>22),
' 5 ' = = Array (' ID ' =>6, ' prize ' = ' = ' next time it will be able to be in oh ', ' V ' =>50),
);
is a two-dimensional array that records all the prize information for this draw, where the ID indicates the winning grade, prize represents the prize, and V indicates the probability of winning. Note that the V must be an integer, and you can set the V of the corresponding prize to 0, meaning that the odds of the prize being pumped are 0, the sum of V in the array (cardinality), and the larger the cardinality, the more accurate the probability. In this case, the sum of V is 100, then the winning probability of the tablet computer is 1%, if the sum of V is 10000, then the probability of winning is one out of 10,000.
Every time a front-end page is requested, the PHP loop prizes are set in an array, using the probability calculation function Get_rand to get the prize ID in the drawing. Save the winning prize in the array $res[' yes ', and the remaining non-winning information is saved in $res[' no ', and finally output JSON data to the front page.
Copy CodeThe code is as follows://If the winning data is in the database, you need to make a judgment on the number of winners
In the 1, 2, 3 and other awards, if the maximum amount is unset the corresponding award, avoid repeating the jackpot
code here Eg:unset ($prize _arr[' 0 ')
foreach ($prize _arr as $key = + $val) {
$arr [$val [' id ']] = $val [' V '];
}

$rid = Get_rand ($arr); Get the prize ID based on probability

$res [' yes '] = $prize _arr[$rid -1][' Prize ']; Chinese awards
The award is excluded from the array, the remaining awards, if the database validation, here can be omitted
unset ($prize _arr[$rid-1]);
Shuffle ($prize _arr); Scrambled Array Order
for ($i =0; $i
$PR [] = $prize _arr[$i] [' Prize '];
}
$res [' no '] = $PR;
echo Json_encode ($res);

Why can't I get the jackpot?

In many similar sweepstakes, the participants often do not get the jackpot, the author from the point of view of the program to show you, if I was the sponsor of the lottery, I set 6 awards, each prize different winning probability, if the first prize is a high-level sedan, but I set the prize probability of 0, which means what? This means that no matter how much the lottery draws, no one will ever get the premium sedan. When the organizer flips the remaining blocks each time, the participant will find that the first prize may be just under a number in the box next to the draw, blaming their bad luck. Is it really bad luck? In fact, when the participants flipped that block, the program has decided on the award, while flipping through the other blocks to see the prize is just a *, confusing the audience and participants. I think after reading this article, you may know that the TV show on the board draw a trick, you probably will never go to the machine to choose color Ball.

http://www.bkjia.com/PHPjc/751513.html www.bkjia.com true http://www.bkjia.com/PHPjc/751513.html techarticle then we will certainly design the algorithm in the program, that is, in accordance with a certain probability for users to receive prizes. Let's take a look at two probability algorithm functions. Algorithm a copy code code is as follows:/** * Full ...

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.