Tagged Questions
The stdvector tag has no wiki summary.
22
votes
2answers
315 views
Why does an empty vector call the value type's default constructor?
Using g++, I observe that creating a vector of size zero calls the vector's parameterized object type's constructor once. It then is deleted. Why does this happen?
#include <iostream>
#include ...
17
votes
8answers
7k views
C++: Easiest way to initialize an STL vector with hardcoded elements
I can create an array initialized with elements like this:
int a[] = {10, 20, 30};
How do I create an STL vector and initialize it like the above? What is the best way to do so with the minimum ...
13
votes
2answers
164 views
How to “watch” the size of a C++ std::vector in gdb?
I have a std::vector as part of a class, that contains a custom type. It's contents seems to be mysteriously changed from somewhere in the program. I am having trouble trying to figure out where this ...
13
votes
3answers
3k views
Converting between C++ std::vector and C array without copying
I would like to be able to convert between std::vector and its underlying C array int* without explicitly copying the data.
Does std::vector provide access to the underlying C array? I am looking ...
12
votes
3answers
582 views
How to shuffle a std::vector in C++?
I am looking for a generic, reusable way to shuffle a std::vector in C++. This is how I currently do it, but I think it's not very efficient because it needs an intermediate array and it needs to know ...
11
votes
6answers
1k views
Pointers to elements of std::vector and std::list
I'm having a std::vector with elements of some class ClassA. Additionally I want to create an index using a std::map<key,ClassA*> which maps some key value to pointers to elements contained in ...
9
votes
1answer
170 views
May std::vector make use of small buffer optimization?
I was wondering with my colleague today whether std::vector can be implemented to make use of small buffer optimization. By looking into the C++11 draft, I read at 23.3.1p8
The expression ...
9
votes
3answers
326 views
Amortized analysis of std::vector insertion
How do we do the analysis of insertion at the back (push_back) in a std::vector? It's amortized time is O(1) per insertion. In particular in a video in channel9 by Stephan T Lavavej and in this ( ...
8
votes
3answers
392 views
std::vector alternative for C
I wonder if there is an alternative for the std::vector in C? I found this implementation but it seems to contain some issues with memory reallocation.
7
votes
6answers
258 views
Fastest way to reset every value of std::vector<int> to 0
What's the fastest way to reset every value of a std::vector<int> to 0 and keeping the vectors initial size ?
A for loop with de [] operator ?
7
votes
3answers
275 views
Manually sorting vector<int> in C++
I am currently looking into how Vectors work in C++. I have read and understand their functionality pretty well.
I'm looking at different ways of sorting a vector object with 10,000 ints, I've used ...
6
votes
3answers
173 views
get the index of a std::vector element given its address
let's say I have a std::vector and I get by some means the adress of the n-th element.
Is there a simple way (faster than iterating throught the vector) to get the index at which the element appears, ...
6
votes
4answers
412 views
How to call constructor of objects contained in a std::vector?
When I create a std::vector of objects, the constructor of these objects is not always called.
#include <iostream>
#include <vector>
using namespace std;
struct C {
int id;
...
6
votes
2answers
1k views
Why can't I index a std::vector in the immediate window?
So, I have a vector
std::vector<std::string> lines.
I fill this vector up, and can access it like
std::string temp = lines[0];
However, in the immediate window, both
lines[0] - ...
5
votes
1answer
86 views
Vector constructor with two parameters is parsed as a function declaration
Consider this example:
#include <iostream>
#include <string>
#include <vector>
#include <iterator>
int main()
{
std::string sen = "abc def ghi jkl";
...
5
votes
4answers
556 views
“static const int” causes linking error (undefined-reference)
I am baffled by the linker error when using the following code:
// static_const.cpp -- complete code
#include <vector>
struct Elem {
static const int value = 0;
};
int main(int argc, char ...
5
votes
5answers
172 views
On different ways of filling a vector
I can think of three ways of filling a std::vector
Suppose we have
vector<int> v(100, 0);
Then I want it to hold (1, 1, 1). We can do:
v.clear();
v.resize(3, 1);
Or
v = ...
5
votes
2answers
620 views
Does std::vector use the assignment operator of its value type to push_back elements?
If so, why? Why doesn't it use the copy constructor of the value type?
I get the following error:
/usr/lib/gcc/i686-pc-cygwin/3.4.4/include/c++/bits/vector.tcc: In member functio
n ...
5
votes
2answers
407 views
'std::vector<T>::iterator it;' doesn't compile
I've got this function:
template<typename T>
void Inventory::insertItem(std::vector<T>& v, const T& x)
{
std::vector<T>::iterator it; // doesn't compile
...
5
votes
2answers
383 views
Putting a C++ Vector as a Member in a Class that Uses a Memory Pool
I've been writing a multi-threaded DLL for database access using ADO/ODBC for use with a legacy application. I need to keep multiple database connections for each thread, so I've put the ADO objects ...
4
votes
3answers
148 views
multiple threads with Vector iterator
I 've declared a vector as
typedef std::vector< unsigned int > SampleList;
and declared Samplist type member variable in a class.
I am accessing this vector from another class with ...
4
votes
3answers
204 views
copying an array into a vector
I have written a small program:
void showrecord()
{
char *a[]={ "O_BILLABLE_ACCOUNT","O_CUSTOMER_TYPE_INDICATOR",
"O_A_PARTY_MSISDN_ID","O_A_PARTY_EQUIPMENT_NUMBER",
...
4
votes
3answers
212 views
STL on custom OS - std::list works, but std::vector doesn't
I'm just playing around with a grub-bootable C++ kernel in visual studio 2010.
I've gotten to the point where I have new and delete written and things such as dynamically allocated arrays work. I ...
4
votes
3answers
112 views
vector related memory allocation question
I am encountering the following bug.
I have a class Foo . Instances of this class are stored in a std::vector vec of class B.
in class Foo, I am creating an instance of class A by allocating memory ...
4
votes
3answers
676 views
Basic question about std::vector instantiation
This looks simple but I am confused: The way I create a vector of hundred, say, ints is
std::vector<int> *pVect = new std::vector<int>(100);
However, looking at std::vector's ...
4
votes
2answers
1k views
Emacs, C++ code completion for vectors
I am new to Emacs, and
I have the following code as a sample.
I have installed GNU Emacs 23.1.1 (i386-mingw-nt6.1.7600), installed cedet-1.0pre7.tar.gz. , installed ELPA, and company.
You can find my ...
4
votes
5answers
151 views
Is the following std::vector code valid?
std::vector<Foo> vec;
Foo foo(...);
assert(vec.size() == 0);
vec.reserve(100); // I've reserved 100 elems
vec[50] = foo; // but I haven't initialized any of them
// so am I assigning into ...
4
votes
5answers
1k views
Is std::vector copying the objects with a push_back?
After a lot of investigations with valgrind, I've made the conclusion that std::vector makes a copy of an object you want to push_back.
Is that really true ? A vector cannot keep a reference or a ...
4
votes
1answer
556 views
std::vector insert() reallocation
I was looking through the std::vector code and I found something I didn't quite get. When capacity < size() + 1 it needs to reallocate the buffer so it can insert the new element. What it does (as ...
4
votes
3answers
647 views
Easiest way to make a cyclic iterator?
I have an object that I want to travel in a continuous loop in a game. I have a series of coordinates in a std::vector that I want to use as waypoints.
Is there anyway to make an ...
4
votes
7answers
3k views
Question about storing array in a std::vector in C++
I am unclear about the following.
First, this code compiles fine:
#include <vector>
typedef struct{
int x1,x2,x3,x4;
} ints;
typedef std::vector<ints> vec;
int main(){
vec v;
ints ...
4
votes
3answers
739 views
std::vector of functions
I want a std::vector to contain some functions, and that more functions can be added to it in realtime. All the functions will have a prototype like this:
void name(SDL_Event *event);
I know how to ...
3
votes
6answers
133 views
Shorter way to get an iterator for a std::vector
Lets say that I have got a vector like this.
std::vector<a_complicated_whatever_identifier *> *something
= new std::vector<a_complicated_whatever_identifier *>;
// by the way, is this ...
3
votes
4answers
142 views
How to store fixed length strings inside a std::vector
I want to mimic a structure:
char [][40] = { "Stack", "Overflow", "Exchange", "Network" };
using a std::vector, so I can populate it at runtime and dynamically change the size of the vector, but ...
3
votes
2answers
145 views
Win32 API vector problem in callback
In the WndProc callback of my program I'm doing this to store a mouse click in a vector:
case WM_LBUTTONDOWN:
point = new POINT();
point->x = LOWORD (lParam);
point->y = HIWORD ...
3
votes
4answers
153 views
Vector of object pointers, initialisation
I'm not very experienced with C++ yet, so bear with me if this is basic stuff.
I have some code like that below. L is an abstract class (it has a number of pure virtual functions), and A, B and C are ...
3
votes
4answers
258 views
Prettier syntax for “pointer to last element”, std::vector?
I'm wondering if there is prettier syntax for this to get a normal pointer (not an iterator) to the last element in a C++ vector
std::vector<int> vec;
int* ptrToLastOne = &(*(vec.end() - ...
3
votes
3answers
261 views
Fastest way to create random vectors for benchmarking
So, I'm just playing around implementing some sorting algorithms in C++, but I'm finding it irritating to benchmark them at the moment, due to the length of time it takes to not run the algorithm, but ...
3
votes
3answers
168 views
referencing a vector::front works, but vector::begin doesn't
I have this bit of code:
cerr << client->inventory.getMisc().front()->getName() << endl;
vector<itemPtr>::iterator it;
it = client->inventory.getMisc().begin();
cerr ...
3
votes
6answers
821 views
3
votes
4answers
118 views
returning a pointed to an object within a std::vector
I have a very basic question on returning a reference to an element of a vector .
There is a vector vec that stores instances of class Foo. I want to access an element from this vector . ( don't ...
2
votes
6answers
100 views
Alternative for std:vector to remove its elements while going through a loop?
I have my loop going through vector's elements. While in this loop some of the elements are being (I want them to be) removed. Although std::vector does not allow to do this, and I would like an ...
2
votes
2answers
60 views
C++ std vector content scope
class example1
{
private:
int i;
public:
example1(){i = 1;}
int getI(){return i;}
};
class example2
{
public:
example2(){}
vector<example2> this_vector_wont_compile(3);
...
2
votes
4answers
90 views
How can a vector be used in this way?
Can someone explain this code please? how is it that the function bar accepts a reference to the first element of the vector?
jintArray arry;
std::vector<int> foo = GetIntegerArray(env, arry);
...
2
votes
1answer
65 views
Initializing and Destructing a 2D Vector in C++
Please I have two questions in respect to vectors in C++:
How to fix the problem in the following code:
In my header file I have:
vector< vector< char > > vec;
In my (.cpp) file in ...
2
votes
4answers
125 views
Segmentation fault trying to dereference a pointer from a vector of pointers
I have a vector of pointers to objects that I am iterating through using std::vector::iterator`. Since the element returned is itself a pointer I dereference the iterator twice, once to return the ...
2
votes
2answers
182 views
Free the memory of a std::vector C++
I have a vector as below.
std::vector<std::string> exportNameList;
I am adding elements to this by using push_back method. But I am getting a debug assertion as "
"Windows has triggered a ...
2
votes
6answers
102 views
Before or after when adding to sets in C++
Given
my_type m;
std::vector<my_type> v;
Which runs more quickly?
m.generate_data_inside_self();
v.push_back(m);
Or
v.push_back(m);
v[0].generate_data_inside_self();
If the vector held ...
2
votes
3answers
159 views
How to efficiently copy a std::vector<char> to a std::string
This question is a flip side of this How to efficiently copy a std::string into a vector
I typically copy the vector this way ( null terminated string )
std::string s((char*)&v[0]);
or ( if ...
2
votes
3answers
141 views
How to resize std::vector with unique objects
I have a vector of objects. Each object has a boost::shared_ptr to a noncopyable object (a boost::signal). the object's default constructor creates the boost::signal object.
struct FuncRef
{
...