3

我正在尝试生成一组字符串的所有可能组合,每个字符串最多使用一次。

  • 未定义输出字符串的长度(最大长度是给定字符串的数量,因为您只能使用一次)
  • 例如,字符串集array('A','B')将生成 A,B,AB,BA。
  • 例如,字符串集array('ABC', 'Z')将生成“ABC”、“Z”、“ZABC”和“ABCZ”。
  • 一个字符串集可以有相同的条目,并且输出不需要是唯一的。例如,字符串集会array('A', 'A')生成'A','A','AA','AA';(我实际上并不需要重复,但我不想让事情变得更困难)

我知道 2 个字符串有 4 种组合 (2=>4) 和 3=>15, 4=>64, 5=>325 ...

由于我不是程序员,我发现它至少“具有挑战性”。嵌套循环很快就太复杂了。一个更简单的解决方案可能是在带有字符串的数组的索引中找到一个模式。但这让我重复使用了字符串......

  $strings = array('T','O','RS');
  $num = 0;
  $stringcount = count($strings);
  $variations = array(0,1,4,15,64,325,1956,13699,109600,986409);

  for($i=0;$i<$variations[$stringcount];$i++){
    $index = base_convert($num, 10, $stringcount);
    $array_of_indexes = str_split($index);
    $out='';
    for($j=0;$j<count($array_of_indexes);$j++){
     $out .= $strings[$array_of_indexes[$j]];
    }
    echo $out . '<br />';
    $num++;
  }

结果:T O RS OT OO ORS RST RSO RSRS OTT OTO OTRS OOT OOO OORS

不好,不包括许多重复+许多有效组合

我知道这个解决方案在很多方面都是错误的,但我不知道从哪里开始?有什么建议么?提前谢谢!

4

4 回答 4

3

在数学术语中,您要求输入集的所有可能的非空有序子集。在整型序列在线百科全书中,此类序列的数量显示为序列 A007526 - 请注意,该序列以 4、15、64、325 开头,与您所发现的完全一样。

这个问题承认 Python 中有一个非常简短、高效的解决方案,所以我将首先发布该解决方案:

def gen_nos(s):
    for i in sorted(s):
        yield i
        s.remove(i)
        for j in gen_nos(s):
            yield i+j
        s.add(i)

例子:

>>> list(gen_nos(set(['a', 'b', 'c'])))
['a', 'ab', 'abc', 'ac', 'acb', 'b', 'ba', 'bac', 'bc', 'bca', 'c', 'ca', 'cab', 'cb', 'cba']

请注意,这sorted不是绝对必要的;它只是确保输出按字典顺序排序(否则,元素按集合顺序迭代,这本质上是任意的)。

要将其转换为 PHP,我们必须使用带有额外数组参数的递归函数来保存结果:

function gen_nos(&$set, &$results) {
    for($i=0; $i<count($set); $i++) {
        $results[] = $set[$i];
        $tempset = $set;
        array_splice($tempset, $i, 1);
        $tempresults = array();
        gen_nos($tempset, $tempresults);
        foreach($tempresults as $res) {
            $results[] = $set[$i] . $res;
        }
    }
}

例子:

$results = array();
$set = array("a", "b", "c");
gen_nos($set, $results);
var_dump($results);

生产

array(15) {
  [0]=>
  string(1) "a"
  [1]=>
  string(2) "ab"
  [2]=>
  string(3) "abc"
  [3]=>
  string(2) "ac"
  [4]=>
  string(3) "acb"
  [5]=>
  string(1) "b"
  [6]=>
  string(2) "ba"
  [7]=>
  string(3) "bac"
  [8]=>
  string(2) "bc"
  [9]=>
  string(3) "bca"
  [10]=>
  string(1) "c"
  [11]=>
  string(2) "ca"
  [12]=>
  string(3) "cab"
  [13]=>
  string(2) "cb"
  [14]=>
  string(3) "cba"
}
于 2012-08-28T14:39:10.077 回答
1

这是我使用组合和排列的基本数学定义编写了相当长一段时间的实现。也许这会有所帮助。

<?php
/**
 * Generate all the combinations of $num elements in the given array
 *
 * @param array  $array   Given array
 * @param int    $num     Number of elements ot chossen
 * @param int    $start   Starter of the iteration
 * @return array          Result array
 */
function combine($array, $num, $start = 0) {

    static $level = 1;

    static $result = array();

    $cnt = count($array);

    $results = array();

    for($i = $start;$i < $cnt;$i++) {
        if($level < $num ) {
            $result[] = $array[$i];
            $start++;
            $level++;
            $results = array_merge($results, combine($array, $num, $start));
            $level--;
            array_pop($result);
        }
        else {
            $result[] = $array[$i];
            $results[] = $result;
            array_pop($result);
        }
    }

    return $results;
}

/**
 * Generate all the permutations of the elements in the given array
 */
function permute($array) {

    $results = array();

    $cnt = count($array);

    for($i=0;$i<$cnt;$i++) {
        $first = array_shift($array);

        if(count($array) > 2 ) {
            $tmp = permute($array);
        }
        elseif(count($array) == 2) {
            $array_ = $array;
            krsort($array_);
            $tmp = array($array, $array_);
        }
        elseif(count($array) == 1) {
            $tmp = array($array);
        }
        elseif(count($array) == 0) {
            $tmp = array(array());
        }

        foreach($tmp as $k => $t) {
            array_unshift($t, $first);
            $tmp[$k] = $t;
        }

        $results = array_merge($results, $tmp);

        array_push($array, $first);
    }

    return $results;
}

$strings = array('T', 'O', 'RS');
$strings_count = count($strings);


$combinations = array();
for ($i = 1; $i <= $strings_count; $i++) {
  $combination = combine($strings, $i, 0);
  $combinations = array_merge($combinations, $combination);
}

$permutations = array();
foreach($combinations as $combination) {
  $permutation = permute($combination);
  $permutations = array_merge($permutations, $permutation);
}

print_r($combinations);
print_r($permutations);
于 2012-08-28T15:28:48.883 回答
0

这是我天真的递归实现:

<?php
// Lists all ways to choose X from an array
function choose($x, array $arr) {
    $ret = array();
    if ($x === 0) {
        // I don't think this will come up.
        return array();
    } else if ($x === 1) {
        foreach ($arr as $val) {
            $ret[] = array($val);
        }
    } else {
        $already_chosen = choose($x - 1, $arr);
        for ($i = 0, $size_i = sizeof($arr); $i < $size_i; $i++) {
            for ($j = 0, $size_j = sizeof($already_chosen); $j < $size_j; $j++) {
                if (!in_array($arr[$i], $already_chosen[$j])) {
                    $ret[] = array_merge(
                        array($arr[$i]),
                        $already_chosen[$j]
                    );
                }
            }
        }
    }
    return $ret;
}

function choose_all($arr) {
    for ($i = 1, $size = sizeof($arr); $i <= $size; $i++) {
        foreach (choose($i, $arr) as $val) {
            echo implode(":", $val).PHP_EOL;
        }
    }
}

choose_all(array(
    "A",
    "B",
));
echo "--".PHP_EOL;
choose_all(array(
    "ABC",
    "Z",
));
echo "--".PHP_EOL;
choose_all(array(
    'T',
    'O',
    'RS'
));

(当然不知道我做了什么)

http://codepad.org/5OKhsCJg

于 2012-08-28T14:39:31.127 回答
-2

你需要的数组本质上是一个笛卡尔积。这是集合数学的一个方面,在数据库系统和形式建模语言中很常见。如果您在 Google 上搜索 PHP 的这个术语,将会有许多实现解决方案。

(我从未直接做过任何 PHP,这就是为什么我不想向您发布不正确(或 hacky)的解决方案,但希望这会帮助您走上正确的道路)!

于 2012-08-28T14:06:10.437 回答