in reply to Generator of integer partitionts of n
which results inmy $integer = 5; my @p; part( 2*$integer, $integer, 0); sub part { my ($n, $k, $t) = @_; $p[$t] = $k; print( join " ", @p[1..$#p], "\n") if $n == $k; for (my $j = $k<$n-$k ? $k : $n-$k; $j >= 1; $j--) { part( $n-$k, $j, $t+1); } }
Update: Thanks to blokhead for catching my error! I had the correct algorithm, but blew it on the print statement. The last valid element of @p is at index $t. Here is the corrected code:1004% perl part.pl 5 4 1 3 2 3 1 1 2 2 1 2 1 1 1 1 1 1 1 1
my $integer = 5; my @p; part( 2*$integer, $integer, 0); sub part { my ($n, $k, $t) = @_; $p[$t] = $k; print( join " ", @p[1..$t], "\n") if $n == $k; for (my $j = $k<$n-$k ? $k : $n-$k; $j >= 1; $j--) { part( $n-$k, $j, $t+1); } }
-Mark
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Generator of integer partitionts of n
by blokhead (Monsignor) on Aug 28, 2004 at 07:02 UTC | |
A reply falls below the community's threshold of quality. You may see it by logging in. |