Re: 2D Array
On Sat, 29 Jun 2013 09:03:28 -0700, axcytz wrote:
On Saturday, June 29, 2013 1:12:00 AM UTC-5, Paavo Helde wrote:
axcytz@gmail.com wrote in
#include <iostream>
#include <vector>
int main()
{
std::vector< std::vector<int> > array;
int init1[] = {2, 3, 5, 1, 5};
std::vector<int> row1( init1,
init1+sizeof(init1)/sizeof(init1[0]));
<snip>
Thank you so much for the help Paavo Helde. The method of using
intermediate rows is not familiar to me. I presume "row1( init1,
init1+sizeof(init1)/sizeof(init1[0]));" defines the array init1 and its
size by "init1+sizeof(init1)/sizeof(init1[0])". Is it correct?
No. The line
std::vector<int> row1( init1, init1+sizeof(init1)/sizeof(init1[0]);
defines the vector `row1` and initializes it with the contents of the
array `init1` (which was defined in the preceding line, as shown in the
quote above).
That line uses a constructor for std::vector that accepts two iterators
that delimit a sequence of values. The first iterator is `init1` (the
array name, which decays to the address of the first element.
The second iterator is `init1 + sizeof(init1)/sizeof(init1[0])`. The two
sizeof expressions in there respectively give the number of bytes taken
by the entire array and the number of bytes of the first array element.
Dividing those two gives you the number of array elements.
And a
critical question is about the memory usage. Is it more efficient than
using matrix with pointers method? Thanks-
With regards to the memory consumption, a vector of vectors probably uses
a few bytes more than a home-grown array of pointers.
With regards to the ways in which you can screw things up, an array of
pointers is very much harder to get right.
Bart v Ingen Schenau