I want to build a soccer game and I must generate all rounds between teams. Then I have an array like this
$array = array(1,2,3,4,5,6,7,8);
How can generate all permute between elements without repetitions.
array(1,2)
array(3,4)
array(5,6)
array(7,8)
Next iteration
array(1,3)
array(2,4)
array(5,7)
array(6,8)
With normal permutations receive duplicates like this
(1 2) (3 4) (5 6) (7 8)
(2 1) (3 4) (5 6) (7 8)
3 and 4 were already in the previous round. The same 5 to 6 and 7 to 8.
For the sake of completeness (on SO), here is the code posted from another answer (thanks to m69's comment above):