Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: How to get a ideal hash

by ig (Vicar)
on Apr 05, 2009 at 02:06 UTC ( [id://755501]=note: print w/replies, xml ) Need Help??


in reply to How to get a ideal hash

Here is yet another solution. This one has a single loop and no recursion.

#!/usr/local/bin/perl use strict; use warnings; use Data::Dumper; my $h= { (4,-1), (2,6), (6,4), (3,5), (5,-1), (99,-1), }; my %hh; my %tails; while(my ($key, $value) = each %$h) { my $val; if($value == -1) { $val = -1; } elsif(exists($hh{$value})) { $val = { $value => $hh{$value} }; delete($hh{$value}); } else { $val = {}; $tails{$value} = $val; } if(exists($tails{$key})) { $tails{$key}{$key} = $val; } else { $hh{$key} = $val; } } print Dumper(\%hh);

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://755501]
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-23 23:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found