I simply cannot wrap my head around how to solve this problem and after a thorough search on Google with no results, I turn to you with hopes of a solution.
Given the sa
If we had three groups of ten items, we could use a counter that goes from 0 to 999, and split the number into digits.
For example,
456
% 10 = 6 -------------------------- Item 6 (7th item) in the first group
/ 10 = 45
% 10 = 5 ---------------- Item 5 (6th item) in the second group
/ 10 = 4
% 10 = 4 ------ Item 4 (5th item) in the third group
/ 10 = 0
This algorithm converts a number into base 10. If we wanted to convert to octal, we would have used 8 instead of 10. 10 (or 8) is used throughout because each position has the same number of symbols, but this algorithm also works if the number of symbols varies from position to position.
2
% 2 = 0 ------------------------ Item 0 (1st item) in the first group: Toppe
/ 2 = 1
^ % 2 = 1 --------------- Item 1 (2nd item) in the second group: Small
| / 2 = 0
| ^ % 1 = 0 ------ Item 0 (1st item) in the third group: Rod
| | / 1 = 0
| | ^
| | |
| | +------------ Number of items in third group
| +--------------------- Number of items in second group
+------------------------------ Number of items in first group
This gives us:
0 = ( 0 * 1 + 0 ) * 2 + 0 = Toppe, Extra_small, Rod
1 = ( 0 * 1 + 0 ) * 2 + 1 = Bukser_og_Jeans, Extra_small, Rod
2 = ( 0 * 1 + 1 ) * 2 + 0 = Toppe, Small, Rod
3 = ( 0 * 1 + 1 ) * 2 + 1 = Bukser_og_Jeans, Small, Rod
The following is a Perl implementation:
my %refinements = (
Type => [
'Toppe',
'Bukser_og_Jeans',
],
Size => [
'Extra_small',
'Small',
],
Colour => [
'Rod',
],
);
my @groups = values(%refinements);
my $iter = 0;
while (1) {
my $num = $iter++;
my @pick;
for my $group (@groups) {
my $r = $num % @$group;
$num = ( $num - $r ) / @$group;
push @pick, $group->[$r];
}
last if $num > 0;
say join(', ', @pick);
}
I know it's not PHP—I don't know PHP—but you're just asking how to solve the problem, not necessarily the code to do it, right? It's my hope that you can understand the above Perl code enough to solve your problem and re-implement it in PHP.
(If I was actually writing a Perl solution, I'd use
Algorith::Loops's NestedLoops
.)