[php] php结合算法

WBOY
Release: 2016-06-13 11:28:11
Original
797 people have browsed it

[php] php组合算法

<?phpfunction combination() {    $array = array();    $arguments = func_get_args();    foreach ($arguments as $argument) {        if (is_array($argument) === true) {            $array[] = $argument;        } else {            $array[] = array($argument);        }    }    $size = count($array);    if ($size === 0) {        return array();    } else if ($size === 1) {        return is_array($array[0]) === true ? $array[0] : array();    } else {        $result = array();        $a = $array[0];        array_shift($array);        if (is_array($array) === false) {            return $result;        }        foreach ($a as $val) {            $b = call_user_func_array("combination", $array);            foreach ($b as $c) {                if (is_array($c) === true) {                    $result[] = array_merge(array($val), $c);                } else {                    $result[] = array($val, $c);                }            }        }        return $result;    }}echo '<pre class="brush:php;toolbar:false">';print_r(combination(array("A1", "A2"), array("B1", "B2"), "1", array("C1", "C2", "C3")));?>  
Copy after login

?

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template