PHP take all combinations

后端 未结 2 964
有刺的猬
有刺的猬 2020-12-01 17:31

I saw this algorithm that will take numbers or words and find all possible combinations

And I\'m using it, but it does NOT return all \"real\" combinations.

2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-01 17:53

    OK, here's your code (and btw, thanks for posting such an interesting and challenging problem - at least for me... :-)) - using recursion for all possible permutations (by N) given an array of elements)

    Code :

    
    

    Output :

    Array
    (
        [0] => cat cat cat
        [1] => cat cat dog
        [2] => cat cat fish
        [3] => cat dog cat
        [4] => cat dog dog
        [5] => cat dog fish
        [6] => cat fish cat
        [7] => cat fish dog
        [8] => cat fish fish
        [9] => dog cat cat
        [10] => dog cat dog
        [11] => dog cat fish
        [12] => dog dog cat
        [13] => dog dog dog
        [14] => dog dog fish
        [15] => dog fish cat
        [16] => dog fish dog
        [17] => dog fish fish
        [18] => fish cat cat
        [19] => fish cat dog
        [20] => fish cat fish
        [21] => fish dog cat
        [22] => fish dog dog
        [23] => fish dog fish
        [24] => fish fish cat
        [25] => fish fish dog
        [26] => fish fish fish
    )
    

    HINT : By permutations($words,2), you'll be able to get exactly what you wanted...

提交回复
热议问题