Help for this page

Select Code to Download


  1. or download this
    #Sample use:
    @ARGV= sort @ARGV;
    do {
        print "@ARGV\n";
    } while( nextpermute(@ARGV) );
    
  2. or download this
    #Sample use:
    my @elts= @ARGV;
    ...
        } while( nextpermute(@elts) );
    } while(  ! @ARGV  );
    exit 0;