Hello, I have a test task for job: having a nested data structure of arrays, hashes and scalars, create a function, that will delete the empty elements, i.e. elements, not containing any scalars.

I created such function, and it works. But I am asking: "is there a more elegant way of implementation?". The function recursively loops through the data structure, removes the empty elements and if there are no elements in the current node - returns 0; The algorithm for arrays and hashes is the same.

#!/usr/bin/perl -w use strict; use Data::Dumper; my @array = ( [1], [], {1 => 2, 2 =>{}} ); clean(\@array); print Dumper(\@array); sub clean { my $ref = shift; my $ref_name = ref($ref); if ($ref_name eq "SCALAR") { return 1; } elsif ($ref_name eq "ARRAY") { my $n = scalar(@$ref); for(my $i = 0; $i < $n; $i++) { my $result = clean($ref->[$i]); if ($result == 0) { delete($ref->[$i]); } } $n = scalar(@$ref); if ($n == 0) { return 0; } return 1; } elsif ($ref_name eq "HASH") { while(my ($key, $value) = each( %$ref)) { my $result = clean($value); if ($result == 0) { delete($ref->{$key}); } } my $n = scalar(keys %$ref); if ($n == 0) { return 0; } return 1; } elsif ($ref_name eq "REF") { die "incorrect reference submitted to function clean\n"; } else { clean(\$ref_name); } }
as the result the script will print:
$VAR1 = [ [ 1 ], undef, { '1' => 2 } ];

In reply to Perl task function by usr345

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.