Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Greetings,
I liked the hash approach holli suggested.
Here are my thoughts.
#!/usr/bin/perl -w use strict; my $before = [qw(1 2 3 4 5 6 7 8 9 10)]; my $after = [qw(2 3 4 5 1 6 7 8 9 10)]; my %start; @start{@{$before}} = @{$after}; #every little shift. my %moved = map{ ($_ != $start{$_}) ? ($_, $start{$_}) : () }keys %start; #shifts larger than one. my %huge_offset = map{ (abs($_ - $start{$_}) > 1) ? ($_, $start{$_}) : () } keys %start; #lets check what we have... print "BEFORE:\t"; print "@$before\n"; print "AFTER:\t"; print "@$after\n"; print "\nOFFSETS:\n"; print "$moved{$_}: ".($start{$_}-1)." to ".($_ - 1)."\n" for( sort {$a +<=>$b} keys %moved); print "\nHUGE OFFSETS:\n"; print "$huge_offset{$_}: ".($start{$_}-1)." to ".($_ - 1)."\n" for( so +rt {$a<=>$b} keys %huge_offset);
and the output.
BEFORE: 1 2 3 4 5 6 7 8 9 10 AFTER: 2 3 4 5 1 6 7 8 9 10 OFFSETS: 2: 1 to 0 3: 2 to 1 4: 3 to 2 5: 4 to 3 1: 0 to 4 HUGE OFFSETS: 1: 0 to 4


-InjunJoel
"I do not feel obliged to believe that the same God who endowed us with sense, reason and intellect has intended us to forego their use." -Galileo

In reply to Re: Difference between two arrays by injunjoel
in thread Difference between two arrays by rafl

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (6)
As of 2024-04-23 14:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found