7

可能重复:
将采用数字或单词并找到所有可能组合的算法

如果我有一个数组,例如:

array('a', 'b', 'c', 'd');

我将如何创建一个包含这 4 个值的所有可能组合的新数组,例如

aaaa, aaab, aaac, aaad ... dddb, dddc, dddd

谢谢!

4

2 回答 2

9

这是另一种方式。

此函数以基数递增([数组中的元素数])

并使用 strtr 函数将字符换成字符串。

function everyCombination($array) {

    $arrayCount      = count($array);
    $maxCombinations = pow($arrayCount, $arrayCount);
    $returnArray     = array();
    $conversionArray = array();

    if ($arrayCount >= 2 && $arrayCount <= 36)
    {
        foreach ($array as $key => $value) {
            $conversionArray[base_convert($key, 10, $arrayCount)] = $value;
        }

        for ($i = 0; $i < $maxCombinations; $i++) {
            $combination    = base_convert($i, 10, $arrayCount);
            $combination    = str_pad($combination, $arrayCount, "0", STR_PAD_LEFT);
            $returnArray[]  = strtr($combination, $conversionArray);
        }

        return $returnArray; 
    }

    echo 'Input array must have between 2 and 36 elements';
}

然后 ...

print_r(everyCombination(array('a', 'b', 'c', 'd')));

这似乎也比下面的递归示例快得多。

在我的服务器上使用 microtime() 此代码在 0.072862863540649 秒内运行

下面的递归示例需要 0.39673089981079 秒。

快 138%!

于 2012-12-24T14:03:21.987 回答
4

您应该使用递归函数

function perm($arr, $n, $result = array())
{
    if($n <= 0) return false;
    $i = 0;

    $new_result = array();
    foreach($arr as $r) {
    if(count($result) > 0) {
        foreach($result as $res) {
                $new_element = array_merge($res, array($r));
                $new_result[] = $new_element;
            }
        } else {
            $new_result[] = array($r);
        }
    }

    if($n == 1) return $new_result;
    return perm($arr, $n - 1, $new_result);
}

$array = array('a', 'b', 'c', 'd');
$permutations = perm($array, 4);
print_r($permutations);
于 2012-12-24T13:59:39.487 回答