Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: What is the best solution to swap input data?

by fenLisesi (Priest)
on Nov 09, 2006 at 07:52 UTC ( [id://583061]=note: print w/replies, xml ) Need Help??


in reply to What is the best solution to swap input data?

A few minor points that caught my attention:
  • $a and $b are not the best variable names, as they are special
  • You could use the replacement capability of substr to eliminate some temp vars
  • In general, it is a good idea to unload args to a function as early as possible, so the shift statement would better become the first line
  • It is a good idea to limit the scope of your vars as much as possible, so my ($a, $b) would be closer to home inside the for loop
use strict; use warnings; my @TEST_STRINGS = ( q(), qw( 1 12 123 1234 12345 ) ); for my $t (@TEST_STRINGS) { printf qq(%-7s => "%s"\n), qq("$t"), swap( $t ); } exit( 0 );
sub swap { my ($str) = @_; die 'No input?' unless defined $str; ## 0 to half-length minus one for my $i (0 .. (length( $str ) >> 1) - 1) { my $j = $i << 1; substr( $str, $j, 2, reverse substr( $str, $j, 2 ) ); } return $str; }
prints:
"" => "" "1" => "1" "12" => "21" "123" => "213" "1234" => "2143" "12345" => "21435"
Cheers.

Update: Took sub swap {...} out of readmore

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (2)
As of 2024-04-19 18:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found