the_0ne,
I understand that, which is why I said modifying the code would not be difficult to do that. The problem is you seem to want to proceed with using a technique that is producing far more candidates than is necessary. Making a terrible approach more efficient isn't going to make it work.
Cheers - L~R
Update: Even with only pulling unique combinations, it does not take long to get to astronimical numbers as pointed out by
kvale earlier. Try out the following code.
#!/usr/bin/perl
use strict;
use warnings;
my $k = $ARGV[0] || 50;
my $total = 1;
for my $n ( 1 .. $k - 1 ) {
if ( $n > $k - $n ) {
$total += factorial($k, $n + 1) / factorial( $k - $n );
}
else {
$total += factorial($k, $k - $n + 1) / factorial( $n );
}
}
print "Total unique combinations for $k is $total\n";
sub factorial {
my ($n, $max, $total) = @_;
$total ||= 1;
$max ||= 0;
return $total if ! $n || $n == $max - 1;
@_ = ($n - 1, $max, $total * $n);
goto &factorial;
}
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.