Tagged Questions

22
votes
2answers
317 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
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 ...
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
3answers
327 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
394 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.
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
413 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; ...
4
votes
3answers
681 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
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 ...
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
6answers
821 views

why there is no find for vector in C++

what's the alternative? Should I write by myself?
2
votes
5answers
431 views

std::vector<std::string> to char* array

I have a std::vector<std::string> that I need to use for a C function's argument that reads char* foo. I have seen how to convert a std::string to char*. As a newcomer to C++, I'm trying to ...
2
votes
1answer
516 views

What's the status of std::vector::data()?

I just realized that I've been using std::vector::data() out of similarity with std::string, but a colleague pointed out that it's not standard. Apparently Gcc implements it, but looking at its ...
2
votes
4answers
335 views

How to cheaply assign C-style array to std::vector? [closed]

Possible Duplicate: Converting between C++ std::vector and C array without copying Currently I do the following: // float *c_array = new float[1024]; void Foo::foo(float *c_array, size_t ...
2
votes
2answers
377 views

c+ stl sorted vector inplace union

I'd like an efficient method for doing the inplace union of a sorted vector with another sorted vector. By inplace, I mean that the algorithm shouldn't create a whole new vector or other storage to ...
2
votes
2answers
254 views

Problem with clear() in custom vector STL container

Following an example in Accelerated C++, I created a custom STL container, which is a simplified version of std::vector, called Vec. Everything worked fine, until, emboldened by success, I tried to ...
2
votes
3answers
238 views

question about std::vector::end()

I recently finished fixing a bug in the following function, and the answer surprised me. I have the following function (written as it was before I found the bug): void ...
2
votes
6answers
1k 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 ...
1
vote
2answers
107 views

Why does the call to std::vector::back() crash my program

I am not sure what's wrong with this code : std::vector<int> myVector(0); if (myVector.back() == 12) myVector.push_back(12); It seems that calling back() on an empty vector crashes the ...
1
vote
4answers
176 views

Returning an empty vector of strings if key is not found

I know it is a very bad idea, so other suggestions on how to do it efficiently will be well-received. Here's the thing. I have map<string,vector<string> > , I want to search for a key and ...
1
vote
3answers
113 views

Constant reference std::vector

How can I have a reference to a specific element in a std::vector? The easy way should be to store it as the index of the element (I am using a size_t variable). The problem I have is the ...
1
vote
3answers
161 views

Vector of class objects

I have created a vector of class objects. The following program crashes with "Pointer being freed was not allocated". I have deep copied as well. I don't see where the double delete is ...
1
vote
2answers
421 views

vector iterators incompatible

I'm currently working on a graph library for C++ and now got stuck at a point where I get an assertion error in debug mode during runtime. I also had a look an some other question here on SO but none ...
1
vote
5answers
221 views

Efficient push_back of classes and structs

I've seen my colleague do the second snippet quite often. Why is this? I've tried adding print statements to track the ctors and dtors, but both seem identical. std::vector<ClassTest> ...
0
votes
5answers
119 views

Copy the contents of std::vector<char> into a char* buffer?

I have an std::vector. I want to copy the contents of the vector into a char* buffer of a certain size. Is there a safe way to do this? Can I do this? memcpy(buffer, _v.begin(), buffer_size); or ...
0
votes
1answer
78 views

Initialize std::vector from std::list using iterators

I'm trying to initialize a std::vector from a std::list efficiently, but I'm not having any luck. For example, it'd like to something like this: void myFunc(std::list<double>::iterator begin, ...
0
votes
1answer
145 views

std::map< MyClass, std::vector<MyClass> > Segment fault. Oddness

SOLVED: Thanks figured it out thanks to dominic hamon. It all boils down to trying to call a function on a kinda null object. It could use parts of the object but not others. I had no idea that this ...
0
votes
2answers
868 views

How to remove duplicates from std::vector <std::pair<UnicodeString, UnicodeString> >

how to remove duplicate values from std::vector <std::pair<UnicodeString, UnicodeString> > myVect; Is there any built in function or i need to write a custom code for this
0
votes
7answers
653 views

How to convert vector<unsigned char> to int?

I have vector<unsigned char> filed with binary data. I need to take, lets say, 2 items from vector(2 bytes) and convert it to integer. How this could be done not in C style?
0
votes
4answers
503 views

How stl vector gives random access

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 anyone give some ...
0
votes
6answers
762 views

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

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 size) { ...
-1
votes
5answers
601 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 ...