A powerful PHP program that counts 24-point games

Source: Internet
Author: User
Count 24 games Everyone has played, then how to use the program to calculate the 4 number of random combinations of the result is 24? For example, 5,5,5,1 these four numbers, how to get a result of 24? Here is a very powerful program that can list all the combinations that meet the criteria.

 "; Makevalue ($values); Print_r ($list), function Makevalue ($values, $set =array ()) {$words = array ("+", "-", "*", "/"), if (sizeof ($values) ==1) {$s Et[] = Array_shift ($values); Return makespecial ($set); The foreach ($values as $key = = $value) {$tmpValues = $values; unset ($tmpValues [$key]); foreach ($words as $word) {Makevalu E ($tmpValues, Array_merge ($set, Array ($value, $word))); }}} function Makespecial ($set) {$size = sizeof ($set); if ($size <=3 | |!in_array ("/", $set) &&!in_array ("*", $ Set) {return Makeresult ($set);} For ($len =3, $len < $size-1; $len +=2) {for ($start =0; $start < $size-1; $start +=2) {if (!) ( $set [$start -1]== "*" | | $set [$start -1]== "/" | | $set [$start + $len]== "*" | | $set [$start + $len]== "/")) continue; $subSet = Array_slice ($set, $start, $len); if (!in_array ("+", $subSet) &&!in_array ("-", $subSet)) continue; $tmpSet = $set; Array_splice ($tmpSet, $start, $len-1); $tmpSet [$start] = "(". Implode ("", $subSet). ")"; Makespecial ($tmpSet); }}}function Makeresult ($sET) {global $result, $list; $str = Implode ("", $set); @eval ("\ $num = $str;"); if ($num = = $result &&!in_array ($str, $list)) $list [] = $STR; }?>


The result of the program operation is:

Array (    [0] = (5-1/5)    [1] = 5* (5-1/5))
  • 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.