in reply to Creating tuples based on sets
Original message follows...
Ah, the joys of dot products. No need for recursion:
#!/usr/bin/perl -w @set = qw(A B C); print join("\n", map(join(',', @$_), @{&make_tuples(\@set, \@set)})); sub make_tuples { my($set1, $set2) = @_; my @product; foreach my $x (0 .. $#$set1) { foreach my $y (0 .. $#$set2) { push(@product, [$set1->[$x], $set2->[$y]]); } } \@product; }
I daresay I just answered a homework question for you, but so be it.
Matt
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Question
by waxmop (Beadle) on Apr 16, 2003 at 15:31 UTC | |
|
Re: Re: Creating tuples based on sets
by perlguy (Deacon) on Apr 16, 2003 at 15:31 UTC | |
by waxmop (Beadle) on Apr 16, 2003 at 15:42 UTC | |
by perlguy (Deacon) on Apr 16, 2003 at 15:50 UTC |