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

Re: hash to hash comparison on large files

by moritz (Cardinal)
on Apr 08, 2009 at 13:56 UTC ( [id://756339]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    while(my ($key1,$value1)=each(%hash1)){
    while(my ($key2,$value2)=each(%hash2)){
    ...
             ...
    }
    }
    
  2. or download this
    while(my ($key1,$value1)=each(%hash1)){
        if (exists $hash2{$key} ) {
    ...
             ...
         }
    }
    
  3. or download this
    foreach(@allhits){
        while(my $str=<FH1>){
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (4)
As of 2024-04-19 06:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found