Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

Because an array is ordered, it's very easy to print out entire array of arrays in *some* kind of order (assuming that you've been keeping it in some kind of order).

Take, for example, the following array of arrays.

my @level1 = ( [1, 2, 3, 4, 5], [6, 7, 8, 9, 10] );

To print the entire array, you need to do the following:

for (my $i = 0; $i < @level1; $i++) { for (my $j = 0; $j < @{$level1[$i]}; $j++) { print STDOUT "\$i: " . $i . " \$j: " . $j . " value: " . $le +vel1[$i][$j] . "\n"; } }

There are several ways of making this code faster, but only at the cost of readability.

Of course, life gets more difficult if you don't know in advance what kind of array-of-array (or List of Lists: LOL) you're dealing with.

That's where the ref function comes in handy.

my @level1 = ( [ 1, 2, 3, [4, 5] ], 6, 7, [ 8, [9, [10] ] ], ); &read_array(\@level1); exit 0; sub read_array { my $array_reference = shift; foreach (@$array_reference) { if (ref($_) eq 'ARRAY') { &read_array($_); } else { print $_ . "\n"; } } }

Here we shifted to basic recursion -- something that calls itself -- to handle the fact that we don't know how deep the LOL runs nor how many elements any given list will contain.

Using subroutines to print an LOL is slightly slower (there's overhead for subroutine calls), but in this case the flexibility gain makes it worthwhile.

As for printing a section of an LOL, you'll have to define the problem a little more because there's any number of ways of tackling it.


In reply to Re: In an array of arrays, how do I print the whole array or bits of it? by jreades
in thread In an array of arrays, how do I print the whole array or bits of it? by Anonymous Monk

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found