Here is a quick and dirty version that doesn't generate all combinations and then filter, but only does the strictly needed work (I assume the array elements have length 1):
#!/usr/bin/perl -wl
use strict;
print for generate(4,
[qw(a b c)], [qw(d e)], [qw(f g h)], ["i"],
[qw(j k)], ["l"], ["m"]);
sub generate {
my $min = shift;
my @non_empty = grep @$_, @_;
return if $min > @non_empty;
work($min, @non_empty);
}
sub work {
my $min = shift;
return "" if !@_;
my $first = shift;
return map {
my $n = $_;
length() < $min ? () : $_, map $_.$n, @$first;
} work($min-1, @_);
}
update: A purely iterative version of the above:
sub generate {
my $min = shift;
my @arrays = grep @$_, @_;
$min -= @arrays;
return if $min > 0;
my @current = ("");
for my $array (@arrays) {
$min++;
@current = map {
my $n = $_;
length() < $min ? () : $_, map $n.$_, @$array;
} @current;
}
return @current;
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.