Board index » delphi » Large data structures
s...@skyfox.usask.ca
![]() Delphi Developer |
Wed, 18 Jun 1902 08:00:00 GMT
Large data structures
In a previous article, ghs...@merle.acns.nwu.edu (George Hsieh) wrote:
Quote
The easiest way to get space for what you want to do is something like this TMatrixRow = array[1..100] of PMatrixCol; var Matrix: TMatrixRow; {Picture Matrix as a vertical array of pointers with TMatrixCols extending {Allocate mem for the columns...} {do something with element(Row,Col)..} This will take up (10,000 * SizeOf(Double) ) bytes for the TMatrixCols, |