in reply to Re: How to return a list using recursion?
in thread How to return a list using recursion?
this isn't something you should use recursion for
s/should/need to/
You also don’t need a module. Here is a solution using a stateful subroutine as an iterator:
#! perl use strict; use warnings; my @list = ('a' .. 'z'); my $size = 5; _array_chunk_it($size, @list); while (my @chunk = _array_chunk_it()) { print "Array chunk of $size =\n", join("\n", @chunk), "\n\n"; } { my ($array, $count); sub _array_chunk_it { my @chunk; if (@_) { $count = shift; $array = [ @_ ]; } else { for (1 .. $count) { push(@chunk, shift @$array) if @$array; } } return @chunk; } }
(With newer versions of Perl, this can be rewritten using state.)
TMTOWTDI :-)
Update: ++Anonymous Monk for the superior version using a closure, below.
Athanasius <°(((>< contra mundum
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: How to return a list using recursion?
by Anonymous Monk on Aug 07, 2012 at 15:04 UTC | |
|
Re^3: How to return a list using recursion?
by Anonymous Monk on Aug 08, 2012 at 08:32 UTC |