home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _e3bb35d96e39361c7e871ac8d0303b82 < prev    next >
Text File  |  2000-03-23  |  12KB  |  309 lines

  1. <HTML>
  2. <HEAD>
  3. <TITLE>perllol - Manipulating Arrays of Arrays in Perl</TITLE>
  4. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  5. <LINK REV="made" HREF="mailto:">
  6. </HEAD>
  7.  
  8. <BODY>
  9. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  10. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  11. <STRONG><P CLASS=block> perllol - Manipulating Arrays of Arrays in Perl</P></STRONG>
  12. </TD></TR>
  13. </TABLE>
  14.  
  15. <A NAME="__index__"></A>
  16. <!-- INDEX BEGIN -->
  17.  
  18. <UL>
  19.  
  20.     <LI><A HREF="#name">NAME</A></LI>
  21.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  22.     <LI><A HREF="#declaration and access of arrays of arrays">Declaration and Access of Arrays of Arrays</A></LI>
  23.     <LI><A HREF="#growing your own">Growing Your Own</A></LI>
  24.     <LI><A HREF="#access and printing">Access and Printing</A></LI>
  25.     <LI><A HREF="#slices">Slices</A></LI>
  26.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  27.     <LI><A HREF="#author">AUTHOR</A></LI>
  28. </UL>
  29. <!-- INDEX END -->
  30.  
  31. <HR>
  32. <P>
  33. <H1><A NAME="name">NAME</A></H1>
  34. <P>perllol - Manipulating Arrays of Arrays in Perl</P>
  35. <P>
  36. <HR>
  37. <H1><A NAME="description">DESCRIPTION</A></H1>
  38. <P>
  39. <HR>
  40. <H1><A NAME="declaration and access of arrays of arrays">Declaration and Access of Arrays of Arrays</A></H1>
  41. <P>The simplest thing to build an array of arrays (sometimes imprecisely
  42. called a list of lists).  It's reasonably easy to understand, and
  43. almost everything that applies here will also be applicable later
  44. on with the fancier data structures.</P>
  45. <P>An array of an array is just a regular old array @AoA that you can
  46. get at with two subscripts, like <CODE>$AoA[3][2]</CODE>.  Here's a declaration
  47. of the array:</P>
  48. <PRE>
  49.     # assign to our array, an array of array references
  50.     @AoA = (
  51.            [ "fred", "barney" ],
  52.            [ "george", "jane", "elroy" ],
  53.            [ "homer", "marge", "bart" ],
  54.     );</PRE>
  55. <PRE>
  56.     print $AoA[2][2];
  57.   bart</PRE>
  58. <P>Now you should be very careful that the outer bracket type
  59. is a round one, that is, a parenthesis.  That's because you're assigning to
  60. an @array, so you need parentheses.  If you wanted there <EM>not</EM> to be an @AoA,
  61. but rather just a reference to it, you could do something more like this:</P>
  62. <PRE>
  63.     # assign a reference to array of array references
  64.     $ref_to_AoA = [
  65.         [ "fred", "barney", "pebbles", "bambam", "dino", ],
  66.         [ "homer", "bart", "marge", "maggie", ],
  67.         [ "george", "jane", "elroy", "judy", ],
  68.     ];</PRE>
  69. <PRE>
  70.     print $ref_to_AoA->[2][2];</PRE>
  71. <P>Notice that the outer bracket type has changed, and so our access syntax
  72. has also changed.  That's because unlike C, in perl you can't freely
  73. interchange arrays and references thereto.  $ref_to_AoA is a reference to an
  74. array, whereas @AoA is an array proper.  Likewise, <CODE>$AoA[2]</CODE> is not an
  75. array, but an array ref.  So how come you can write these:</P>
  76. <PRE>
  77.     $AoA[2][2]
  78.     $ref_to_AoA->[2][2]</PRE>
  79. <P>instead of having to write these:</P>
  80. <PRE>
  81.     $AoA[2]->[2]
  82.     $ref_to_AoA->[2]->[2]</PRE>
  83. <P>Well, that's because the rule is that on adjacent brackets only (whether
  84. square or curly), you are free to omit the pointer dereferencing arrow.
  85. But you cannot do so for the very first one if it's a scalar containing
  86. a reference, which means that $ref_to_AoA always needs it.</P>
  87. <P>
  88. <HR>
  89. <H1><A NAME="growing your own">Growing Your Own</A></H1>
  90. <P>That's all well and good for declaration of a fixed data structure,
  91. but what if you wanted to add new elements on the fly, or build
  92. it up entirely from scratch?</P>
  93. <P>First, let's look at reading it in from a file.  This is something like
  94. adding a row at a time.  We'll assume that there's a flat file in which
  95. each line is a row and each word an element.  If you're trying to develop an
  96. @AoA array containing all these, here's the right way to do that:</P>
  97. <PRE>
  98.     while (<>) {
  99.         @tmp = split;
  100.         push @AoA, [ @tmp ];
  101.     }</PRE>
  102. <P>You might also have loaded that from a function:</P>
  103. <PRE>
  104.     for $i ( 1 .. 10 ) {
  105.         $AoA[$i] = [ somefunc($i) ];
  106.     }</PRE>
  107. <P>Or you might have had a temporary variable sitting around with the
  108. array in it.</P>
  109. <PRE>
  110.     for $i ( 1 .. 10 ) {
  111.         @tmp = somefunc($i);
  112.         $AoA[$i] = [ @tmp ];
  113.     }</PRE>
  114. <P>It's very important that you make sure to use the <CODE>[]</CODE> array reference
  115. constructor.  That's because this will be very wrong:</P>
  116. <PRE>
  117.     $AoA[$i] = @tmp;</PRE>
  118. <P>You see, assigning a named array like that to a scalar just counts the
  119. number of elements in @tmp, which probably isn't what you want.</P>
  120. <P>If you are running under <CODE>use strict</CODE>, you'll have to add some
  121. declarations to make it happy:</P>
  122. <PRE>
  123.     use strict;
  124.     my(@AoA, @tmp);
  125.     while (<>) {
  126.         @tmp = split;
  127.         push @AoA, [ @tmp ];
  128.     }</PRE>
  129. <P>Of course, you don't need the temporary array to have a name at all:</P>
  130. <PRE>
  131.     while (<>) {
  132.         push @AoA, [ split ];
  133.     }</PRE>
  134. <P>You also don't have to use push().  You could just make a direct assignment
  135. if you knew where you wanted to put it:</P>
  136. <PRE>
  137.     my (@AoA, $i, $line);
  138.     for $i ( 0 .. 10 ) {
  139.         $line = <>;
  140.         $AoA[$i] = [ split ' ', $line ];
  141.     }</PRE>
  142. <P>or even just</P>
  143. <PRE>
  144.     my (@AoA, $i);
  145.     for $i ( 0 .. 10 ) {
  146.         $AoA[$i] = [ split ' ', <> ];
  147.     }</PRE>
  148. <P>You should in general be leery of using functions that could
  149. potentially return lists in scalar context without explicitly stating
  150. such.  This would be clearer to the casual reader:</P>
  151. <PRE>
  152.     my (@AoA, $i);
  153.     for $i ( 0 .. 10 ) {
  154.         $AoA[$i] = [ split ' ', scalar(<>) ];
  155.     }</PRE>
  156. <P>If you wanted to have a $ref_to_AoA variable as a reference to an array,
  157. you'd have to do something like this:</P>
  158. <PRE>
  159.     while (<>) {
  160.         push @$ref_to_AoA, [ split ];
  161.     }</PRE>
  162. <P>Now you can add new rows.  What about adding new columns?  If you're
  163. dealing with just matrices, it's often easiest to use simple assignment:</P>
  164. <PRE>
  165.     for $x (1 .. 10) {
  166.         for $y (1 .. 10) {
  167.             $AoA[$x][$y] = func($x, $y);
  168.         }
  169.     }</PRE>
  170. <PRE>
  171.     for $x ( 3, 7, 9 ) {
  172.         $AoA[$x][20] += func2($x);
  173.     }</PRE>
  174. <P>It doesn't matter whether those elements are already
  175. there or not: it'll gladly create them for you, setting
  176. intervening elements to <A HREF="../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A> as need be.</P>
  177. <P>If you wanted just to append to a row, you'd have
  178. to do something a bit funnier looking:</P>
  179. <PRE>
  180.     # add new columns to an existing row
  181.     push @{ $AoA[0] }, "wilma", "betty";</PRE>
  182. <P>Notice that I <EM>couldn't</EM> say just:</P>
  183. <PRE>
  184.     push $AoA[0], "wilma", "betty";  # WRONG!</PRE>
  185. <P>In fact, that wouldn't even compile.  How come?  Because the argument
  186. to <A HREF="../../lib/Pod/perlfunc.html#item_push"><CODE>push()</CODE></A> must be a real array, not just a reference to such.</P>
  187. <P>
  188. <HR>
  189. <H1><A NAME="access and printing">Access and Printing</A></H1>
  190. <P>Now it's time to print your data structure out.  How
  191. are you going to do that?  Well, if you want only one
  192. of the elements, it's trivial:</P>
  193. <PRE>
  194.     print $AoA[0][0];</PRE>
  195. <P>If you want to print the whole thing, though, you can't
  196. say</P>
  197. <PRE>
  198.     print @AoA;         # WRONG</PRE>
  199. <P>because you'll get just references listed, and perl will never
  200. automatically dereference things for you.  Instead, you have to
  201. roll yourself a loop or two.  This prints the whole structure,
  202. using the shell-style <CODE>for()</CODE> construct to loop across the outer
  203. set of subscripts.</P>
  204. <PRE>
  205.     for $aref ( @AoA ) {
  206.         print "\t [ @$aref ],\n";
  207.     }</PRE>
  208. <P>If you wanted to keep track of subscripts, you might do this:</P>
  209. <PRE>
  210.     for $i ( 0 .. $#AoA ) {
  211.         print "\t elt $i is [ @{$AoA[$i]} ],\n";
  212.     }</PRE>
  213. <P>or maybe even this.  Notice the inner loop.</P>
  214. <PRE>
  215.     for $i ( 0 .. $#AoA ) {
  216.         for $j ( 0 .. $#{$AoA[$i]} ) {
  217.             print "elt $i $j is $AoA[$i][$j]\n";
  218.         }
  219.     }</PRE>
  220. <P>As you can see, it's getting a bit complicated.  That's why
  221. sometimes is easier to take a temporary on your way through:</P>
  222. <PRE>
  223.     for $i ( 0 .. $#AoA ) {
  224.         $aref = $AoA[$i];
  225.         for $j ( 0 .. $#{$aref} ) {
  226.             print "elt $i $j is $AoA[$i][$j]\n";
  227.         }
  228.     }</PRE>
  229. <P>Hmm... that's still a bit ugly.  How about this:</P>
  230. <PRE>
  231.     for $i ( 0 .. $#AoA ) {
  232.         $aref = $AoA[$i];
  233.         $n = @$aref - 1;
  234.         for $j ( 0 .. $n ) {
  235.             print "elt $i $j is $AoA[$i][$j]\n";
  236.         }
  237.     }</PRE>
  238. <P>
  239. <HR>
  240. <H1><A NAME="slices">Slices</A></H1>
  241. <P>If you want to get at a slice (part of a row) in a multidimensional
  242. array, you're going to have to do some fancy subscripting.  That's
  243. because while we have a nice synonym for single elements via the
  244. pointer arrow for dereferencing, no such convenience exists for slices.
  245. (Remember, of course, that you can always write a loop to do a slice
  246. operation.)</P>
  247. <P>Here's how to do one operation using a loop.  We'll assume an @AoA
  248. variable as before.</P>
  249. <PRE>
  250.     @part = ();
  251.     $x = 4;
  252.     for ($y = 7; $y < 13; $y++) {
  253.         push @part, $AoA[$x][$y];
  254.     }</PRE>
  255. <P>That same loop could be replaced with a slice operation:</P>
  256. <PRE>
  257.     @part = @{ $AoA[4] } [ 7..12 ];</PRE>
  258. <P>but as you might well imagine, this is pretty rough on the reader.</P>
  259. <P>Ah, but what if you wanted a <EM>two-dimensional slice</EM>, such as having
  260. $x run from 4..8 and $y run from 7 to 12?  Hmm... here's the simple way:</P>
  261. <PRE>
  262.     @newAoA = ();
  263.     for ($startx = $x = 4; $x <= 8; $x++) {
  264.         for ($starty = $y = 7; $y <= 12; $y++) {
  265.             $newAoA[$x - $startx][$y - $starty] = $AoA[$x][$y];
  266.         }
  267.     }</PRE>
  268. <P>We can reduce some of the looping through slices</P>
  269. <PRE>
  270.     for ($x = 4; $x <= 8; $x++) {
  271.         push @newAoA, [ @{ $AoA[$x] } [ 7..12 ] ];
  272.     }</PRE>
  273. <P>If you were into Schwartzian Transforms, you would probably
  274. have selected map for that</P>
  275. <PRE>
  276.     @newAoA = map { [ @{ $AoA[$_] } [ 7..12 ] ] } 4 .. 8;</PRE>
  277. <P>Although if your manager accused of seeking job security (or rapid
  278. insecurity) through inscrutable code, it would be hard to argue. :-)
  279. If I were you, I'd put that in a function:</P>
  280. <PRE>
  281.     @newAoA = splice_2D( \@AoA, 4 => 8, 7 => 12 );
  282.     sub splice_2D {
  283.         my $lrr = shift;        # ref to array of array refs!
  284.         my ($x_lo, $x_hi,
  285.             $y_lo, $y_hi) = @_;</PRE>
  286. <PRE>
  287.         return map {
  288.             [ @{ $lrr->[$_] } [ $y_lo .. $y_hi ] ]
  289.         } $x_lo .. $x_hi;
  290.     }</PRE>
  291. <P>
  292. <HR>
  293. <H1><A NAME="see also">SEE ALSO</A></H1>
  294. <P>perldata(1), perlref(1), <CODE>perldsc(1)</CODE></P>
  295. <P>
  296. <HR>
  297. <H1><A NAME="author">AUTHOR</A></H1>
  298. <P>Tom Christiansen <<EM><A HREF="mailto:tchrist@perl.com">tchrist@perl.com</A></EM>></P>
  299. <P>Last update: Thu Jun  4 16:16:23 MDT 1998</P>
  300. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  301. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  302. <STRONG><P CLASS=block> perllol - Manipulating Arrays of Arrays in Perl</P></STRONG>
  303. </TD></TR>
  304. </TABLE>
  305.  
  306. </BODY>
  307.  
  308. </HTML>
  309.