Tagged Questions
The push-back tag has no wiki summary.
4
votes
3answers
381 views
C++ vector push back crashes after object is pushed back and function exits
The problem was a stupid error from another class accessing the vector and deleting iterators. Nothing to do with the code below. Sorry to waste your time.
I must be missing something elementary.
...
2
votes
5answers
82 views
C++ : push_back a map<string, int> into a vector<map<string, int> > via an iterator?
I'm currently studying the book accelerated C++ (Koenig / Moo) and I'm having trouble with one of the exercises. The problem is to write a program which takes as an input some sequence of words which ...
2
votes
3answers
122 views
C++ vector of structs initialization
I am still learning C++
I want know how I can add values to my vector of structs using the push_back method
struct subject
{
string name;
int marks;
int credits;
};
vector<subject> ...
2
votes
1answer
726 views
Vector pointer and push_back()
If i have
void f(vector<object> *vo) {
}
And i pass the address of a vector to f
vector<object> vo;
f(&vo);
How would i use push_back() to add to the vector? (I'm new to ...
2
votes
4answers
395 views
Does push_back() always increase a vector's size?
I have a piece of code which creates a std::vector<T> with a known size:
std::vector<T> vectorOfTs(n);
Does calling push_back increase the size to n+1?
vectorOfTs.push_back(T());
2
votes
3answers
1k views
push_back() and push_front() in Java
Is there any collection class in java, that implements push_back() and push_front() methods?
1
vote
6answers
140 views
What happens under the hood of vector::push_back memory wise?
My question is regarding the effect of vector::push_back, I know it adds an element in the end of the vector but what happens underneath the hood?
IIRC memory objects are allocated in a sequential ...
1
vote
6answers
111 views
In C++, will the vector function push_back increase the size of an empty array?
Quick question. Let's say I declare a vector of size 20. And then I want to add a few integers to it using push_back.
vector<int> myVector(20);
myVector.push_back(5);
myVector.push_back(14);
...
1
vote
2answers
195 views
Using push_back() for STL List in C++ causes Access Violation, Crash
I'm creating a game using my own homemade gaming engine, but I'm running into trouble using lists.
I have a structure in my program called BoardState. Each of these structures has a list of ...
1
vote
5answers
261 views
Being Smart About Vector Memory Allocation
Let's say I have to iterate over a potentially very large vector of numbers and copy the even and odd elements into new, separate vectors. (The source vector may have any proportion of evens to odds; ...
1
vote
3answers
906 views
map<string, vector <pair<int, int> > > pushing back into pair?
I have this map<string, vector <pair<int, int> > > variable and I'm pushing back a value, but code::blocks is telling me that pair does not have a member function called push_back. ...
1
vote
4answers
474 views
C++ Vector string for-loop push_back error
I feel like this is a no-brainer, but for some reason I can't understand what's happening.
When I run this part of my code, which is combining a URL with string elements from an array and then ...
1
vote
2answers
147 views
2 arguments in push_back
I am trying to put 2 arguments inside a vector using push_back but its giving me an error since the function is allowed to take only one argument. How can I pass 2 arguments??
Vertex Class:
template ...
1
vote
2answers
88 views
How to create and use list, of type “customClass”
I have created a class "Node" to contain a bunch of data. I am trying to make a list of the same type of this class. I am having errors in trying to use push_back() or any of the other functions.
...
1
vote
5answers
389 views
C++ vector - push_back
In the C++ Primer book, Chapter (3), there is the following for-loop that resets the elements in the vector to zero.
vector<int> ivec; //UPDATE: vector declaration
for ...
1
vote
6answers
200 views
How to keep an iterator dereferenceable when its vector is added to?
Let's say I have this code:
std::vector<Object*> objects;
std::vector<Object*>::iterator iter;
for (iter = objects.begin(); iter != objects.end(); iter++) {
if (condition)
...
1
vote
2answers
156 views
push_back private vectors with 2 methods, one isn't working
I have a class with a private vector of doubles.
To access or modify these values, at first I used methods such as
void classA::pushVector(double i)
{
this->vector.push_back(i);
}
double ...
1
vote
2answers
274 views
pushing back an boost::ptr_vector<…>::iterator in another boost::ptr_vector?
I have the following code (just typed it in here, might have typos or stuff):
typedef boost::ptr_vector<SomeClass> tvec;
tvec v;
// ... fill v ...
tvec vsnap;
for(tvec::iterator it = ...
1
vote
4answers
150 views
manipulation of Vectors created with new
Can anyone help with this...
vector<unsigned int> *vVec = new vector<unsigned int>;
vVec .reserve(frankReservedSpace);
start = std::clock();
for(int f=0; ...
0
votes
3answers
87 views
push_back in a vector in a object
I have a profesor class with this atribute
vector<int> hDisponibles;
If I have a vector of this class
set<profesor> profesores;
I try this
set<profesor>::iterator itP;
itP = ...
0
votes
2answers
61 views
Updating vector of class objects using push_back in various functions
I have a vector of class objects I've created in main by reading in a data file. I'm then passing around the vector to several different files containing functions that perform different operations ...
0
votes
5answers
79 views
Vector error , cannot get push_back to work
This is just a snippet of the uncommented code. The packing vector keeps causing an error at the push_back, and I'm not quite sure why:
EDIT: It has been updated to say
...
0
votes
1answer
177 views
C++ vector push_back with class object
I've been using this site for a while and so far never needed to ask a new question (found all answers I've needed until now).
I need to push_back multiple objects into a vector but VS throws an ...
0
votes
0answers
103 views
Segmentation fault when calling push_back on a vector in C++
I had a frustrating problem for my project, and I made a mistake in my older posting, but I will re-describe my problem here:
I have a vector of pointers with type Box: vector<const Box *> ...
0
votes
1answer
154 views
Stl container vector push_back with OpenMP multithreading
I want to push_back an object into a vector from different threads. The no. of threads depends on the machine.
#pragma omp parallel shared(Spaces, LookUpTable) private(LutDistribution, tid)
{
tid ...
0
votes
2answers
92 views
Help with constructor (pusing_back elements into a pointer to an array)
I have a problem inserting elements into a pointer to a vector of some elements I defined in my code (in this case Recipes). In some other parts of the code, using push_back seems to work fine, but if ...
0
votes
3answers
886 views
Using push_back on a vector of strings - C++
I am trying to use push_back on a vector of strings in C++. How can I push a single character on to the vector? Currently, I have tried the following, all without success:
Initialized a string ...
0
votes
2answers
345 views
push_back operation in c# containers
I need container like c++ vector. Often it is adviced to use List, but it dosen't support push_back operation. I know this rather simple implementing an extension method for List container. But. Would ...
0
votes
3answers
298 views
C++ curious behavior in vector::push_back()
I have the following data-structure as a class named "Task":
private:
string name;
int computation_time;
int period;
Furthermore i have a ASCII-File with this content:
A 3 10
B 2 12
C 1 11
name ...
0
votes
6answers
836 views
Vector push_back Access Violation
This is probably a silly error, but it's driving me nuts trying to fix it.
I have a struct:
struct MarkerData
{
int pattId;
unsigned short boneId;
Ogre::Matrix4 transToBone;
Ogre::Vector3 ...
0
votes
2answers
344 views
Vector does reallocation on every push_back
IDE - Visual Studio 2008, Visual C++
I have a custom class Class1 with a copy constructor to it.
I also have a vector
Data is inserted using the following code
Class1* objClass1;
...
0
votes
3answers
1k views
C++ vector push_back() overwrites on another vector of the same type?
I defined a class named nth_best_parse this way:
class nth_best_parse {
public:
int traversal;
int nth_best_active;
int nth_best_passive;
double viterbi_prob;
...
0
votes
3answers
1k views
Causing push_back in vector<int> to segmentaion fault on what seems to be simple operation
I'm working on a program for Project Euler to add all the digits of 2^1000. So far I've been able to track the program segmentation faults when it reaches around 5 digits and tries to push a one onto ...
-1
votes
3answers
759 views
Vector (push_back); g++ -O2; Segmentation fault
I'm having problem with vector, (in the usage of push_back) but it only appears when using additional g++ flag -O2 (I need it).
#include <cstdio>
#include <vector>
typedef ...
-2
votes
2answers
115 views
push_back() not working for custom data type (template class)
Apparently push_back() is not working for my custom data class T. On compilation I get the following error:
error: no matching function for call to ‘Vector::push_back(int&)’
Could someone ...