Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Organizing data from a hash

by kcott (Archbishop)
on Dec 02, 2020 at 06:22 UTC ( [id://11124505]=note: print w/replies, xml ) Need Help??


in reply to Organizing data from a hash

G'day audioboxer,

Purely as a fun exercise, I put this together before studying other offerings. There's a few similarities with other posts.

#!/usr/bin/env perl use strict; use warnings; use constant { CHILD_ID => 0, CAT_NAME => 1, }; my $VAR1 = { 986172 => { cat_parent_id => '', cat_name => 'Category1' }, 986178 => { cat_parent_id => '986177', cat_name => 'Category4' }, 986177 => { cat_parent_id => '986176', cat_name => 'Category3' }, 986176 => { cat_name => 'Category2', cat_parent_id => '986172' } }; my $wanted_string = get_wanted_string($VAR1); print "$wanted_string\n"; sub get_wanted_string { my ($data) = @_; my (%family, @cats); for my $child_id (keys %$data) { my ($parent_id, $cat_name) = @{$data->{$child_id}}{qw{cat_parent_id cat_name}}; $family{$parent_id} = [$child_id, $cat_name]; } return join ',', @{recurse_family(\%family, \@cats)}; } sub recurse_family { my ($family, $cats, $parent) = @_; $parent = '' unless defined $parent; return $cats unless exists $family->{$parent}; push @$cats, $family->{$parent}[CAT_NAME]; recurse_family($family, $cats, $family->{$parent}[CHILD_ID]); }

Output:

Category1,Category2,Category3,Category4

— Ken

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (4)
As of 2024-04-25 13:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found