in reply to Printing of Array Hash is Missing Elements

for my $entry (sort keys %buildings) {
Try:
for my $entry (sort keys %{ $ref }) {

I would also do:

print_hash(\%buildings);