17
votes
4answers
2k views
C++ STL Vectors: Get iterator from index?
So, I wrote a bunch of code that accesses elements in an stl vector by index[], but now I need to copy just a chunk of the vector. It looks like vector.insert(pos, first, last) is …
17
votes
11answers
2k views
Why is a C++ Vector called a Vector?
The question's pretty self-explanatory really. I know vaguely about vectors in maths, but I don't really see the link to C++ vectors. Thanks!
17
votes
6answers
1k views
How to find an item in a std::vector?
All I wanna do is to check whether an element exists in the vector or not, so I can deal with each case.
if ( item_present )
do_this();
else
do that();
17
votes
3answers
2k views
How do I print the elements of a C++ vector in GDB?
I want to examine the contents of a std::vector in GDB, how do I do it? Let's say it's a std::vector<int> for the sake of simplicity.
11
votes
3answers
457 views
How to downsize std::vector?
Is there a way to resize a std::vector to lower capacity when I no longer need previously reserved space?
10
votes
9answers
882 views
Efficient comparison of 100.000 vectors
I save 100.000 Vectors of in a database. Each vector has a dimension 60. (int vector[60])
Then I take one and want present vectors to the user in order of decreasing similarity to …
10
votes
5answers
744 views
Learning game programming (part 2) (math)
So, it's been a few months since I wrote this question, since then I've toyed with "raw" C++ D3D, The Ogre and Irrlicht graphics engines and lately Microsoft XNA. I've built a few …
10
votes
4answers
2k views
how to concat two stl vectors?
how to concat two stl vectors?
8
votes
5answers
320 views
A colleague said don’t use java.util.Vector anymore - why not?
Previously I would always have thought a Vector was good to use for non-descript objects when length was unknown. As far as I was aware I thought it was thread-safe too
What woul …
8
votes
4answers
624 views
Why Java Vector class is considered obsolete or deprecated?
Why Java Vector is considered a legacy class, obsolete or deprecated?
Its use isn't valid when working with concurrency?
And if I don't want to manually synchronize objects and j …
7
votes
5answers
2k views
How do I sort a std::vector by the values of a different std::vector?
I have several std::vector, all of the same length. I want to sort one of these vectors, and apply the same transformation to all of the other vectors. Is there a neat way of do …
7
votes
9answers
811 views
how get a vector<Derived*> into a function that expects a vector<Base*> as argument
Hi,
Consider these classes,
class Base
{
...
};
class Derived : public Base
{
...
};
this function
void BaseFoo( std::vector<Base*>vec )
{
...
}
And finally my vecto …
6
votes
6answers
262 views
Vector initializing slower than array…why?
I tried 2 things: (pseudo code below)
int arr[10000];
for (int i = 0; i < 10000; i++)
{
for (int j = 0; j < 10000; j++)
{
arr[j] = j;
}
}
and
vector<in …
6
votes
7answers
442 views
What is a data structure that has O(1) for append, prepend, and retrieve element at any location?
I'm looking for Java solution but any general answer is also OK.
Vector/ArrayList is O(1) for append and retrieve, but O(n) for prepend.
LinkedList (in Java implemented as doubly …
6
votes
7answers
595 views
Why can’t I make a vector of references?
When I do this:
std::vector<int> hello;
Everything works great. However, when I make it a vector instead:
std::vector<int &> hello;
I get horrible errors like …
