Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re^2: Creating hash of arrays (in a faster way)

by Corion (Patriarch)
on Nov 01, 2013 at 09:57 UTC ( [id://1060732]=note: print w/replies, xml ) Need Help??


in reply to Re: Creating hash of arrays (in a faster way)
in thread Creating hash of arrays (in a faster way)

I would assume from the data structure that the arrays might be intended to contain more than one value, although that has not been demonstrated in the code of the question.

My approach, keeping with the spirit of the push as I perceive it, is below. It's less ugly than what I thought it would be:

for my $row ( @hash{ @cols }) { push @$row, shift @values }

I also thought about an approach that does avoid the loop, but my solutions only shuffles the loop around, and doing weirdo aliasing tricks through @_ did not lead to a good solution for me - it seems that array-assigning to the aliased @_ does not do individual assignment to the slots:

sub alias { \@_ }; { my %hash; my @cols = qw(min max sum); my @values = qw(1 3 4); @{ alias map { $_->[ 0+ @$_ ] } @hash{ @cols } }= @values; print Dumper \%hash; }

Avoiding the magic aliasing and passing around references does not really improve the situation, even though it works.

{ my %hash; my @cols = qw(min max sum); my @values = qw(1 3 4); for( map { \$_->[ 0+@$_ ] } @hash{ @cols } ) { $$_= shift @values; }; print Dumper \%hash; }

Replies are listed 'Best First'.
Re^3: Creating hash of arrays (in a faster way)
by Anonymous Monk on Nov 01, 2013 at 10:33 UTC
    You're correct. The arrays are indented to contain more than one value.
    Iterating over the values of the hash seems to be quite a bit faster. Thank you very much.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (3)
As of 2024-04-24 20:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found