Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Characters Combinations of All Sizes

by monkfan (Curate)
on May 01, 2005 at 08:01 UTC ( [id://452988]=CUFP: print w/replies, xml ) Need Help??

The snippet uses Math::Combinatorics module. Given a set of characters as an array. It returns all the possible combinations of the characters ranging from 1 character to total size of the array.

Update: Data::Dumper included. Thanks to zentara.
#!/usr/bin/perl -w use strict; use Data::Dumper; my @n = ('A' .. 'C'); my @all_string = get_char_comb(@n); print "There are: ",scalar(@all_string)," strings\n"; print Dumper \@all_string; sub get_char_comb { use Math::Combinatorics; my @alph = @_; my @all; foreach ( 0 .. $#alph+1 ) { my $combinat = Math::Combinatorics->new( count => $_, data => [@alph], ); while(my @permu = $combinat->next_combination) { push @all, join("",@permu); } } return @all; }
Output:
$VAR1 = [ 'A', 'B', 'C', 'AB', 'AC', 'BC', 'ABC' ];

Replies are listed 'Best First'.
Re: Characters Combinations of All Size
by zentara (Archbishop) on May 01, 2005 at 12:23 UTC
    You forgot a "use Data::Dumper;".

    I'm not really a human, but I play one on earth. flash japh

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: CUFP [id://452988]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (3)
As of 2024-04-25 17:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found