Tagged Questions

2
votes
3answers
178 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 …
2
votes
6answers
213 views

std::vector::reserve performance penalty

inline void add(const DataStruct& rhs) { using namespace boost::assign; vec.reserve(vec.size() + 3); vec += rhs.a, rhs.b, rhs.c; } The above function was executed for about 17000 times …
3
votes
7answers
494 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 …
1
vote
6answers
193 views

Out of four std::vector objects select the one with the most elements

I have four std::vector containers that all might (or might not) contain elements. I want to determine which of them has the most elements and use it subsequently. I tried to create a std::map with …
1
vote
5answers
145 views

preventing data from being freed when vector goes out of scope

Is there a way to transfer ownership of the data contained in a std::vector (pointed to by, say T*data) into another construct, preventing having "data" become a dangling pointer after the vector goes …
0
votes
4answers
151 views

How stl vector gives random access

Hello Gurus, Yesterday evening I was using std::vector for my work, and this question popped into my mind: how does vector gives random access? I tried to look into code but was unsuccessful. Can …
1
vote
8answers
326 views

c++ std vector - invalidated iterator question

I have a standard vector of pointers. Under what circumstances might an iterator into this vector become invalidated? I have reason to believe that when an object is deleted, any vector iterator …
-1
votes
3answers
220 views

vector of vectors, bad alloc [c++]

Hi, I've a class named Contact and I want to build a data structure of pointers to those objects like a matrix of 127 rows and 20 columns. I've tried to use the std::vector class in this way …
3
votes
3answers
132 views

std::vector of functions

Hi all 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 …
0
votes
6answers
315 views

Vector of pointers template clearing function fails to compile with “undefined reference” message

Hello all, For a program of mine I made a small function to clear the various std::vectors of pointers that I have. template <class S> void clearPtrVector(std::vector<S*> &a,int …
1
vote
4answers
454 views

Using a pointer to an object stored in a vector… c++

I have a vector of myObjects in global scope. std::vector<myObject> A method is passed a pointer to one of the elements in the vector. Can this method increment the pointer, to get to the …
-1
votes
5answers
419 views

C++ Vector

Look this code(and forgive the miss of knowlegde).It outputs errors that I couldnot solve.I need to declare a vector of elements of struct C,but I need the number of elements be i(a input of type …