0
votes
6answers
172 views
Efficient passing of std::vector
When a C++ function accepts an std::vector argument, the usual pattern is to pass it by const reference, such as:
int sum2(const std::vector<int> &v)
{
int s = 0;
…
0
votes
2answers
20 views
Drawing Vector Graphics Faster
In my application I want to draw polygons using Windows Create Graphics method and later edit the polygon by allowing the user to select the points of the polygon and allowing to r …
0
votes
3answers
137 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 …
0
votes
2answers
48 views
std vector + default allocator + direct array access?
If I create a std::vector with the default allocator like this:
vector<int> myVec = vector<int>();
myVec.push_back(3);
myVec.push_back(5);
myVec.push_back(8);
Does t …
0
votes
4answers
55 views
How to insert into nested vector without invalidating iterator(s)
I have some boolean expressions to evaluate and process. Maybe this would have all been better with Boost, but I'm still learning STL and didn't go that way. I'm now learning abo …
0
votes
4answers
44 views
Problem retuning a vector from a c++ dll to another c++ exe
Hi,
I have a function foo() in dll A.dll, whose definition is as follows
vector<CustomObject> foo()
{
vector<CustomObject> customObjectCollection;
//c …
0
votes
3answers
67 views
[Vector] Iterator and 2d vector
vector< vector<int> >::iterator temp = mincost.end();
vector<int> a = *temp;
if ( *temp != *(temp--) )
return 0;
mincost is a 2d vector, I want to get the las …
2
votes
7answers
165 views
c++ problem with polymorphism and vectors of pointers
Consider the following example code:
class Foo
{
};
class Bar : public Foo
{
};
class FooCollection
{
protected:
vector<shared_ptr<Foo> > d_foos;
};
class BarCo …
0
votes
2answers
110 views
C++ as in Java?: vector of vectors with *variable* length of int
My model would best use some
v int[30][i][N_i];
structure that is 30 vectors of tuples of ints, where
v[0] is a dummy,
v[1] are plain ints (N_0 of them),
v[2] are pairs of int …
1
vote
3answers
233 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 ar …
2
votes
4answers
83 views
Initializing a ublas vector from a C array
I am writing a Matlab extension using the C++ ublas library, and I would like to be able to initialize my ublas vectors from the C arrays passed by the Matlab interpeter.
How can I …
0
votes
3answers
100 views
sort vector by more than 1 field
How do I sort the below code by name, age and score... all three fields
#include <string>
#include <vector>
#include <algorithm>
struct student_t
{
s …
0
votes
5answers
113 views
matrix and vector template classes in c++
#include <array>
template <typename T>
class Vector4<T> {
std::array<T, 4> _a; // or 'T _a[4];'?
};
template <typename T>
class Matrix4<T> …
2
votes
8answers
185 views
When returning a pointer, what to return if it’s not found? C++
I'm not sure what to return as a default?
myDrugs is a private vector<Drug*> container
Drug* DrugDealer::getFirstDrugInSack(DrugType drugtobuy)
{
for (int i = 0; i < …
1
vote
4answers
101 views
Adding elements to a vector inside a c++ class not being stored
Edit: My debugger was lying to me. This is all irrelevant
Howdy all,
I had a peek at http://stackoverflow.com/questions/637438/adding-element-to-vector, but it's not helpful for …
