chiburashka,
Here is an iterative solution that produces output in ascending order and is about twice as fast as blokhead's in my rudimentary benchmarks.
#!/usr/bin/perl
use strict;
use warnings;
my $numb = $ARGV[ 0 ] || 10;
my $iter = partition( $numb );
while ( my @part = $iter->() ) {
print "@part\n";
}
sub partition {
my $target = shift;
return sub { () } if ! $target || $target =~ /\D/;
my @part = (0, (1) x ($target - 1));
my $done = undef;
return sub {
return () if $done;
my $min = $part[ -2 ];
my $total = $part[ 0 ] ? 0 : 1;
my $index = 0;
for ( 0 .. $#part - 1) {
if ( $part[ $_ ] > $min ) {
$total += $part[ $_ ];
next;
}
$index = $_;
last;
}
$part[ $index ]++;
$total += $part[ $index ];
if ( $total > $target || $part[ $index ] > $part[ 0 ] ) {
@part = ( $index ? ++$part[ 0 ] : $part[ 0 ], (1) x ($targ
+et - $part[ 0 ]) );
}
else {
@part = ( @part[ 0 .. $index ], (1) x ($target - $total) )
+;
push @part , 1 if $part[ 0 ] == 1;
}
$done = 1 if $part[ 0 ] == $target;
return @part;
}
}
I am sure it could probably be improved a bit more but it is working and that's what's important.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|