This routine unmerges a list into more than one list, but destroys the original list. A non-destructive version is available.

my @arr = qw ( apples oranges bananas pears berries apricots peaches ) +; my @arr_of_columns = unmerge_list_d( \@arr, 2 );
giving us:
['apples', 'bananas','berries', 'prunes'] ['oranges','pears', 'apricots']

If you want to pad the end of uneven arrays place the padding as the third argument

my $arr_of_arr = unmerge_list_d( [ 1 .. 7 ], 3, 'goofy' ); which yields:
[ [1, 4, 7] [2, 5, 'goofy'] [3, 6, 'goofy'] ]

I don't know if unmerge_list_d will allow very large arrays to be unmerged, but it should help reduce memory usage.

sub unmerge_list_d { my ( $list_ref, $qty, $pad ) = @_; return unless ref $list_ref eq 'ARRAY'; my $arr; push @$arr, [] for 1 .. $qty; if ( @$list_ref % $qty && @_ > 2) { my $padded = $qty - @$list_ref % $qty ; push @{ $list_ref }, ($pad) x $padded; } LOOP: while (1) { foreach ( @$arr ) { push @{ $_ }, shift @$list_ref; last LOOP unless @$list_ref; } } return @$arr if wantarray; return $arr; }

In reply to Destructive Unmerge List by CharlesClarkson

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.