没有重复,精确长度,所有可能的PHP字符串组合

时间:2013-12-12 17:52:47

标签: php

我正在寻找能够为我提供相同长度且无重复的所有可能结果的算法。

INPUT
---------------
abc


OUTPUT
---------------
abc
acb
bac
bca
cab
cba

1 个答案:

答案 0 :(得分:1)

看看男人:How to generate all permutations of a string in PHP?

// function to generate and print all N! permutations of $str. (N = strlen($str)).
function permute($str,$i,$n) {
   if ($i == $n)
       print "$str\n";
   else {
        for ($j = $i; $j < $n; $j++) {
          swap($str,$i,$j);
          permute($str, $i+1, $n);
          swap($str,$i,$j); // backtrack.
       }
   }
}

// function to swap the char at pos $i and $j of $str.
function swap(&$str,$i,$j) {
    $temp = $str[$i];
    $str[$i] = $str[$j];
    $str[$j] = $temp;
}   

$str = "hey";
permute($str,0,strlen($str)); // call the function.