Initializing vector<vector<int> > and other vector questions... | | |
Hi all,
I have a vector of vector of ints, I could use C approach by using
int[][] but I think C++ vector<vector<int> > would be easier to manage.
So I have a function which creates and initializes the vector with the
values I need (I know these values before hand).
- What's the best way to initialize the vector<vector<int> >? Can I
initilize it by enumerating its values?
- If I do: v = new vector<vector<int> >(3) for example, is it
initializing the internal vector automatically?
- Is returning a vector from a function too heavy from an efficiency
perspective?
Or it would be better to return always a pointer to a vector?
Cheers,
Paulo Matos | | | | re: Initializing vector<vector<int> > and other vector questions...
pmatos wrote:[color=blue]
> I have a vector of vector of ints, I could use C approach by using
> int[][] but I think C++ vector<vector<int> > would be easier to manage.
> So I have a function which creates and initializes the vector with the
> values I need (I know these values before hand).
>
> - What's the best way to initialize the vector<vector<int> >? Can I
> initilize it by enumerating its values?[/color]
Not really. The simplest way would probably be initialising it from
an array of arrays. While you do have to create that array of arrays,
but later you don't need to manage it.
[color=blue]
> - If I do: v = new vector<vector<int> >(3) for example, is it
> initializing the internal vector automatically?[/color]
Yes, it creates a vector of three empty vectors of int (provided that
your 'v' variable is a pointer). You could add another argument to
the initialiser and control how the "internal" vectors are initialised:
v = new vector<vector<int> >(3, vector<int>(5, 42));
That way it's a vector of 3 vectors of 5 int each, and ints are all
set to have the value 42.
[color=blue]
> - Is returning a vector from a function too heavy from an efficiency
> perspective?[/color]
Not really. Your compiler probably has some kind of "return value
optimization" implemented.
[color=blue]
> Or it would be better to return always a pointer to a vector?[/color]
Depends on your needs.
V | | | | re: Initializing vector<vector<int> > and other vector questions...
Victor Bazarov wrote:[color=blue]
> pmatos wrote:[color=green]
> > I have a vector of vector of ints, I could use C approach by using
> > int[][] but I think C++ vector<vector<int> > would be easier to[/color][/color]
manage.[color=blue][color=green]
> > So I have a function which creates and initializes the vector with[/color][/color]
the[color=blue][color=green]
> > values I need (I know these values before hand).
> >
> > - What's the best way to initialize the vector<vector<int> >? Can I
> > initilize it by enumerating its values?[/color]
>
> Not really. The simplest way would probably be initialising it from
> an array of arrays. While you do have to create that array of[/color]
arrays,[color=blue]
> but later you don't need to manage it.[/color]
Thanks for you previous answers...
This issue is insteresting. Do you mean that if I create a int[][],
then I can use it to initialize the vector<vector<int> >? If I have a =
int[][] well initialized of course can I do v = vector<vector<int> >(a)
? (Being both v and a pointers of course.)
Paulo Matos | | | | re: Initializing vector<vector<int> > and other vector questions...
pmatos wrote:[color=blue]
> ...
> This issue is insteresting. Do you mean that if I create a int[][],
> then I can use it to initialize the vector<vector<int> >? If I have a =
> int[][] well initialized of course can I do v = vector<vector<int> >(a)
> ? (Being both v and a pointers of course.)[/color]
No. Unfortunately, it doesn't work like that. You would still need
to do some dancing around.
After some thinking, I now conclude that I should take it back, there
is no easy way to initialise a vector of vectors from a two-dimensional
array. A vector can be initialised from an array by
vector<int> vi(array_of_int,
array_of_int + sizeof(array_of_int)/sizeof(int) );
but for a vector of vectors you'd have to write that initialiser for
each vector separately, which makes it not worth your while, probably.
V | | | | re: Initializing vector<vector<int> > and other vector questions...
[color=blue]
> No. Unfortunately, it doesn't work like that. You would still need
> to do some dancing around.
>
> After some thinking, I now conclude that I should take it back, there
> is no easy way to initialise a vector of vectors from a[/color]
two-dimensional[color=blue]
> array. A vector can be initialised from an array by
>
> vector<int> vi(array_of_int,
> array_of_int + sizeof(array_of_int)/sizeof(int)[/color]
);[color=blue]
>
> but for a vector of vectors you'd have to write that initialiser for
> each vector separately, which makes it not worth your while,[/color]
probably.[color=blue]
>[/color]
Well, yeah, It seems I'll have to give it some thinking then. Thanks a
lot for the help.
Paulo Matos
[color=blue]
> V[/color] | | | | re: Initializing vector<vector<int> > and other vector questions...
"Victor Bazarov" <v.Abazarov@comAcast.net> wrote in message
news:yY8ee.67894$NC6.56627@newsread1.mlpsca01.us.t o.verio.net[color=blue]
> pmatos wrote:
>[color=green]
>> - If I do: v = new vector<vector<int> >(3) for example, is it
>> initializing the internal vector automatically?[/color]
>
> Yes, it creates a vector of three empty vectors of int (provided that
> your 'v' variable is a pointer). You could add another argument to
> the initialiser and control how the "internal" vectors are
> initialised:
> v = new vector<vector<int> >(3, vector<int>(5, 42));
>
> That way it's a vector of 3 vectors of 5 int each, and ints are all
> set to have the value 42.[/color]
Isn't one of the main reasons for using vector that it does memory
management for you? Is it not therefore almost always a bad idea to be
creating vectors using new?
--
John Carson |  | | | | /bytes/about
We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights.
Get the best answers to your questions from over 226,510 network members.
|