At run time, can one determine the size of a vector?
For example
input : 25 // which shows vector size
code :
int N ;
cin << N ;
vector <int> data[N];
|
At run time, can one determine the size of a For example input : 25 // which shows vector size
| ||||
|
show 1 more comment
feedback
|
|
You are using
(which calls the one-parameter constructor of To get its size at runtime1 you just have to call its method
| |||
|
feedback
|
|
Two methods that might interest you:
Example snippet
output
I'm guessing that your example snippet in the original post contains at least one typo, you don't declare a What you wrote would be that data is a array of
To create a
| ||||
|
feedback
|
|
Matteo is right. Just to add to his answer. You do not necessarily need to define the vector size at run time. I am assuming you are using c++. You can just write
and then every time you want to element to the end of the vector just do
Its not like array where you need to give them a size before using. Vectors can dynamically grow and shrink. So, you do not need to care about memory allocation. It is handled by the compiler and the | |||
|
feedback
|
|
You are almost there: use
instead of
If you need to set all elements of your vector to a value other than zero, say, | ||||
|
feedback
|
std::vector. – dasblinkenlight Dec 17 '11 at 12:15std::vector<int> data(N)constructor does it. – dasblinkenlight Dec 17 '11 at 12:19