http://qs321.pair.com?node_id=29373

This is a faster version of How do I permute N elements of a list?. The odds are very good that it spends more time printing than permuting. Put in an if test around the print to print, say, every 100 lines or so to see it really fly.

The reason that it is more efficient than the FAQ is that it spends as little energy copying data as possible.

#!/usr/bin/perl -n # tsc-permute: permute each word of input use subs qw( _permute ); permute(split); { my @perm; my @unperm; sub permute { @perm = (); @unperm = @_; _permute; } sub _permute { if (@unperm) { push @perm, pop @unperm; foreach (1..@perm) { push @perm, shift @perm; _permute; } push @unperm, pop @perm; } else { print "@perm\n"; } } }