vote up 1 vote down star

How do I append hash a to hash b in Perl without using a loop?

flag

70% accept rate
2  
Why don't you want to use a loop? – brian d foy Aug 8 at 1:12

2 Answers

vote up 9 vote down check

If you mean take the union of their data, just do:

%c = (%a, %b);
link|flag
Why doesn't %a = (%a, %b); work? %a gets "erased" – biznez Aug 6 at 23:31
1  
It works for me: "%a=('a' => 'b', 'c' => 1); %b=('c' => 'd'); %a = (%a, %b); print join(', ', map { "'$_' => \"${a{$_}}\"" } keys %a), "\n";" Items from %b with the same key take precedence, but other items from %a are present after the union. – outis Aug 6 at 23:51
2  
@yskhoo: it does work. – ysth Aug 7 at 2:48
that might be the OP's problem, they might want to merge the values of the hash, so $a{'c'} ends up being [1, 'd'] – james2vegas Aug 7 at 10:51
2  
In which case they should look at Hash::Merge on the CPAN – james2vegas Aug 7 at 10:53
vote up 8 vote down

You can also use slices to merge one hash into another:

@a{keys %b} = values %b;

Note that items in %b will overwrite items in %a that have the same key.

link|flag
For extra credit, with a hash ref in a and b, we do @{$a}{keys %$b} = values %$b; – daotoad Aug 7 at 5:30
I expect this to be more efficient than the other reply, because that one recreates the hash also for the already existing items, while this one just adds keys for the new items. If there were many items in %a, compared to %b, the difference can be respectable. – bart Aug 10 at 20:04
Maybe. My approach also walks %b twice. If %b is larger than %a, the other technique might be faster. Fastest of all might be a loop, but the OP didn't want that. – outis Aug 10 at 20:49
@bart: looks like you were right. Some rather simple timing tests for perl 5.8.9 on OS X 10.4 place the slice approach about 2.4 times faster, even with %b much larger than %a. Your mileage may vary. – outis Aug 10 at 21:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.