Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Converting HoA into AoH

by Roy Johnson (Monsignor)
on Oct 31, 2005 at 18:01 UTC ( [id://504380]=note: print w/replies, xml ) Need Help??


in reply to Converting HoA into AoH

You might want to look at Algorithm::Loops to generalize the nested-loops solutions that others have offered. Here's a solution in the classical recursive vein.
use warnings; use strict; my $HoA = { flintstones => [ "fred", "barney" ], jetsons => [ "george", "jane"], }; use Data::Dumper; print Dumper to_AoH(%$HoA); sub to_AoH { # For no data, return an empty hashref in an arrayref @_ or return [{}]; # Otherwise, recursively map the first key's values over # the AoH of the rest of the list my ($k, $v_aref, @rest) = @_; [ map { my $href = $_; map { {%$href, $k => $_} } @$v_aref } @{to_AoH(@rest)} ] }
Updated: simpler base case means simpler code.

Caution: Contents may have been coded under pressure.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (7)
As of 2024-04-19 10:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found