in reply to Re^2: Massive expansion of a hash of arrays?
in thread Massive expansion of a hash of arrays?
OK, I’ll have a go at explaining how this works. But note first that BrowserUk produced his elegant solution by exploiting some of the less-well-known features of Perl syntax. Let’s get them out of the way first:
perl -slw
-l sets $\ (the output record separator) to be a newline. This makes the statement
print join ' ', @_;
equivalent to
print join(' ', @_), "\n";
sub nForX(&@)
This use of subroutine prototypes allows a bare block (not followed by a comma) to replace a subroutine reference as the first argument passed to nForX. Arguments following this subroutine are forced into list context.
&nForX( $code, $n-1, @_, $i );
The syntax &nForX(...) causes Perl to ignore the prototypes. This is done here to suppress the warning
main::nForX() called too early to check prototype at ... line ...
which would otherwise result.
\( @a, @b, @c )
This “distributes” the reference over each element in the list; so, it’s a convenient shortcut for writing \@a, \@b, \@c.
Now to the recursion. (1) On the first call, $code is initialised to the block { print join ' ', @_; }, and $n is set to 3. As 3 is non-zero, the call to return $code->(@_) is skipped. The for loop which follows is equivalent to this:
for my $i (1, 2, 3, 4, 5, 6, 7, 8, 9, 10) { &nForX($code, 2, \@b, \@c, $i); }
The first iteration of this loop calls nForX for the second time, as follows:
&nForX($code, 2, \@b, \@c, 1);
(2) Within this second call, $code is set as before, and $n is 2. The for loop is now equivalent to this:
for my $i ('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', + 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z' +) { &nForX($code, 1, \@c, 1, $i); }
On its first iteration, it calls nForX for the third time, as follows:
&nForX($code, 1, \@c, 1, 'a');
(3) Within this third call, $n is 1, and the loop is now this:
for my $i ('!', '"', '#', '$', '%', '&', "'", '(', ')', '*', '+', ',', + '-', '.', '/') { &nForX($code, 0, 1, 'a', $i); }
On its first iteration, this loop calls nForX for the fourth time, as follows:
&nForX($code, 0, 1, 'a', '!');
(4) Within this fourth call, $n is now zero, so the sub ends with the statement return $code->(@_);, which is here equivalent to:
return print join ' ', 1, 'a', '!';
So at this point, the first line of output is printed, and a “true” value is returned to the caller, which was the third call to nForX. That third call throws the return value away, and proceeds to the next iteration of its for loop, which is equivalent to this:
&nForX($code, 0, 1, 'a', '"');
— and so on and so on, until all the calls to nForX have returned and all the loops are exhausted. (As am I, after all that!)
Hope that helps,
| Athanasius <°(((>< contra mundum | Iustus alius egestas vitae, eros Piratica, |
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Massive expansion of a hash of arrays?
by Amblikai (Scribe) on Jul 20, 2014 at 20:42 UTC | |
by farang (Chaplain) on Jul 20, 2014 at 23:32 UTC | |
by Amblikai (Scribe) on Jul 22, 2014 at 13:45 UTC |