Using Length() with multi-dimensional dynamic arrays in Delphi - Stack Overflow most recent 30 from stackoverflow.com 2010-03-19T20:54:43Z http://stackoverflow.com/feeds/question/162753 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/162753/using-length-with-multi-dimensional-dynamic-arrays-in-delphi 2 Using Length() with multi-dimensional dynamic arrays in Delphi Chris J http://stackoverflow.com/users/16059 2008-10-02T14:52:52Z 2008-10-04T07:04:17Z <p>I am using a multi-dimensional dynamic array in delphi and am trying to figure this out:</p> <p>I have 2 seperate values for the first index and second index that are totally seperate of each other.</p> <p>As new values come I want to grow the array if that new value is outside of either bound.</p> <p>For new values x, y</p> <p>I check:</p> <pre><code>if Length(List) &lt; (x + 1) then SetLength(List, x + 1); if Length(List[0]) &lt; (y + 1) then SetLength(List, Length(List), y + 1); </code></pre> <p>Is this the correct way to do this or is there a better way to grow the array as needed?</p> http://stackoverflow.com/questions/162753/using-length-with-multi-dimensional-dynamic-arrays-in-delphi/162783#162783 3 Answer by gabr for Using Length() with multi-dimensional dynamic arrays in Delphi gabr http://stackoverflow.com/users/4997 2008-10-02T14:57:35Z 2008-10-02T14:57:35Z <p>It looks fine to me - if you change the last line to</p> <pre><code>SetLength(List, Length(List), y + 1); </code></pre> http://stackoverflow.com/questions/162753/using-length-with-multi-dimensional-dynamic-arrays-in-delphi/165847#165847 0 Answer by PatrickvL for Using Length() with multi-dimensional dynamic arrays in Delphi PatrickvL http://stackoverflow.com/users/12170 2008-10-03T05:57:31Z 2008-10-03T21:01:10Z <p>I think you forgot to use the second index on the second dimension;</p> <p>Your code should probably read like this :</p> <pre><code>if Length(List) &lt; (x + 1) then SetLength(List, x + 1); if Length(List[x]) &lt; (y + 1) then SetLength(List[x], y + 1); </code></pre> <p>Note the use of 'x' as the first dimension index when growing the second dimension.</p> <p>One caution though :</p> <p>You should be aware of the fact that Delphi uses reference-counting on dynamic arrays too (just like how it's done with AnsiString). Because of this, growing the array like above will work, but any other reference to it will still have the <em>old</em> copy of it!</p> <p>The only way around this, is keeping track of these array's with one extra level of indirection - ie. : Use a pointer to the dynamic array (which is also a pointer in itself, but that's okay).</p> <p>Also note that any of those 'external' pointers should be updated in any situation that the address of the dynamic array could change, as when growing/shrinking it using SetLength().</p> http://stackoverflow.com/questions/162753/using-length-with-multi-dimensional-dynamic-arrays-in-delphi/166614#166614 1 Answer by gabr for Using Length() with multi-dimensional dynamic arrays in Delphi gabr http://stackoverflow.com/users/4997 2008-10-03T12:39:46Z 2008-10-04T07:04:17Z <p><del>@<a href="#165847" rel="nofollow">PatrickvL</a>: Sorry, but that is just plain wrong. Your code does not even compile because it tries to set two dimensions for the single-dimensional element List[x].</del> <em>(PatrickvL updated his code so this part of the answer is no longer valid.)</em></p> <p>The following code demonstrates multidimensional array resizing.</p> <p>program TestDimensions;</p> <pre><code>{$APPTYPE CONSOLE} uses SysUtils; var List: array of array of integer; begin //set both dimensions SetLength(List, 3, 2); Writeln('X = ', Length(List), ', Y = ', Length(List[0])); //X = 3, Y = 2 //set main dimension to 4, keep subdimension untouched SetLength(List, 4); Writeln('X = ', Length(List), ', Y = ', Length(List[0])); //X = 4, Y = 2 //set subdimension to 3, keep main dimenstion untouched SetLength(List, Length(List), 3); Writeln('X = ', Length(List), ', Y = ', Length(List[0])); //X = 4, Y = 3 //all List[0]..List[3] have 3 elements Writeln(Length(List[0]), Length(List[1]), Length(List[2]), Length(List[3])); //3333 //you can change subdimension for each List[] vector SetLength(List[0], 1); SetLength(List[3], 7); //List is now a ragged array Writeln(Length(List[0]), Length(List[1]), Length(List[2]), Length(List[3])); //1337 //this does not even compile because it tries to set dimension that does not exist! // SetLength(List[0], Length(List[0]), 12); Readln; end. </code></pre> <p>The Delphi help also explains this quite nicely (Structured Types, Arrays).</p> <blockquote> <p>Multidimensional Dynamic Arrays To declare multidimensional dynamic arrays, use iterated array of ... constructions. For example, </p> <p>type TMessageGrid = array of array of string;<br /> var Msgs: TMessageGrid;</p> <p>declares a two-dimensional array of strings. To instantiate this array, call SetLength with two integer arguments. For example, if I and J are integer-valued variables, </p> <p>SetLength(Msgs,I,J); </p> <p>allocates an I-by-J array, and Msgs[0,0] denotes an element of that array. </p> <p>You can create multidimensional dynamic arrays that are not rectangular. The first step is to call SetLength, passing it parameters for the first n dimensions of the array. For example, </p> <p>var Ints: array of array of Integer;<br /> SetLength(Ints,10); </p> <p>allocates ten rows for Ints but no columns. Later, you can allocate the columns one at a time (giving them different lengths); for example </p> <p>SetLength(Ints[2], 5); </p> <p>makes the third column of Ints five integers long. At this point (even if the other columns haven't been allocated) you can assign values to the third column - for example, Ints[2,4] := 6. </p> <p>The following example uses dynamic arrays (and the IntToStr function declared in the SysUtils unit) to create a triangular matrix of strings. </p> <p>var<br /> A : array of array of string;<br /> I, J : Integer;<br /> begin<br /> SetLength(A, 10);<br /> for I := Low(A) to High(A) do<br /> begin<br /> SetLength(A[I], I);<br /> for J := Low(A[I]) to High(A[I]) do<br /> A[I,J] := IntToStr(I) + ',' + IntToStr(J) + ' ';<br /> end;<br /> end; </p> </blockquote>