Tagged Questions
A one-dimensional resizable array
98
votes
4answers
43k 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 just want to use a ...
57
votes
4answers
14k 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.
47
votes
13answers
3k views
std::vector is so much slower than plain arrays?
I've always thought it's the general wisdom that std::vector is "implemented as an array," blah blah blah. Today I went down and tested it, seems to be not so:
Here's some test results:
UseArray ...
41
votes
5answers
10k 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 the function I ...
38
votes
11answers
4k 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!
31
votes
6answers
44k 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();
29
votes
4answers
14k views
28
votes
7answers
7k 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 "error C2528: ...
23
votes
1answer
577 views
std::vector, default construction, C++0x and breaking changes
I ran today against a quite subtle issue I'd like to have your opinion on.
Consider the following garden-variety shared-body-idiom class:
struct S
{
S() : p_impl(new impl) {}
private:
struct ...
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 ...
22
votes
3answers
25k views
How do I calculate the normal vector of a line segment?
Suppose I have a line segment going from (x1,y1) to (x2,y2). How do I calculate the normal vector perpendicular to the line?
I can find lots of stuff about doing this for planes in 3D, but no 2D ...
22
votes
6answers
2k views
Is it safe to assume that STL vector storage is always contiguous?
If you have an STL vector which has been resized, is it safe to take the address of element 0 and assume the rest of the vector will follow in memory?
e.g.
vector<char> vc(100);
// do some ...
21
votes
5answers
752 views
What is the difference between std::array and std::vector? When do you use one over other?
What is the difference between std::array and std::vector? When do you use one over other?
I have always used and considered std:vector as an C++ way of using C arrays, so what is the difference?
21
votes
2answers
6k views
C++: Appending a vector to a vector
Assuming I have 2 STL vectors:
vector<int> a;
vector<int> b;
Let's also say the both have around 30 elements.
How do I add the vector b to the end of vector a?
The dirty way would ...
20
votes
4answers
638 views
Why can't I create a vector of lambda in C++11?
I was trying to create a vector of lambda, but failed:
auto ignore = [&]() { return 10; }; //1
std::vector<decltype(ignore)> v; //2
v.push_back([&]() { return 100; }); //3
Up to ...
20
votes
6answers
6k views
Alternative to vector<bool>
As (hopefully) we all know, vector<bool> is totally broken and can't be treated as a c array. What is the best way to get this functionality?
So far, the ideas I have thought of are:
Use a ...
19
votes
13answers
13k views
Using arrays or std::vectors in C++, what's the performance gap?
In our C++ course they suggest not to use C++ arrays on new projects anymore. As far as I know Stroustroup himself suggests not to use arrays. But are there significant performance differences?
18
votes
3answers
2k 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?
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 ...
17
votes
3answers
13k views
R function for testing if a vector contains a given element
In R, how do you test a vector to see if it contains a given element?
17
votes
5answers
3k views
In Clojure, when should I use a vector over a list, and the other way around?
I read that Vectors are not seqs, but Lists are. I'm not sure what the rationale is for using one over the other. It seems that vectors are used the most, but is there a reason for that? Any answers ...
17
votes
7answers
4k views
Looking for C++ STL-like vector class but using stack storage
Before I write my own I will ask all y'all.
I'm looking for a C++ class that is almost exactly like a STL vector but stores data into an array on the stack. Some kind of STL allocator class would ...
16
votes
2answers
603 views
C++0x vector push_back ambiguous
Consider the following code:
#include <vector>
struct S { int a; double b; };
int main()
{
std::vector<S> v;
v.push_back({3, 4.5});
}
g++ 4.4 complains that the call to ...
16
votes
6answers
4k views
sum of elements in a `std::vector`
What are the good ways of finding the sum of all the elements in a std::vector?
Suppose I have a vector std::vector<int> vector with a few elements in it. Now I want to find the sum of all the ...
15
votes
4answers
134 views
Why are quaternions used for rotations?
I'm a physicist, and have been learning some programming, and have come across a lot of people using quaternions for rotations instead of writing things in matrix/vector form.
In physics, there are ...
15
votes
3answers
182 views
Order of destruction of elements of an std::vector [closed]
Possible Duplicate:
STL containers element destruction order
Is there a guarantee the the elements of an std::vector would be destroyed from last to first?
15
votes
1answer
7k views
Can't include C++ headers like vector in Android NDK
When I try to include any C++ class like vector in my Android NDK project (using NDK r5b, the latest), I get an error like the following...
Compile++ thumb : test-libstl <= test-libstl.cpp
...
14
votes
4answers
227 views
Can vector<T>::clear throw?
Is there any chance for a call to std::vector<T>::clear() to throw an exception?
14
votes
3answers
200 views
Does std::vector *have* to move objects when growing capacity? Or, can allocators “reallocate”?
A different question inspired the following thought:
Does std::vector<T> have to move all the elements when it increases its capacity?
As far as I understand, the standard behaviour is for the ...
14
votes
3answers
998 views
What are the differences between ArrayList and Vector?
What are the differences between these two data structures and where should you use each of them?
14
votes
4answers
3k views
How to initialize std::vector from C-style array?
What is the cheapest way to initialize a std::vector from a C-style array?
Example: In the following class, I have a vector, but due to outside restrictions, the data will be passed in as C-style ...
14
votes
10answers
1k 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 the chosen one.
I ...
14
votes
2answers
2k views
Thinking in Vectors with R
I know that R works most efficiently with vectors and looping should be avoided. I am having a hard time teaching myself to actually write code this way. I would like some ideas on how to 'vectorize' ...
14
votes
7answers
8k 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 doing this? ...
13
votes
2answers
288 views
std::lower_bound slower for std::vector than std::map::find
I wrote a class to act as a wrapper around a sequential container (std::vector/std::queue/std::list) to have the interface of a std::map, for performance when using small numbers of small objects. ...
13
votes
3answers
478 views
How to roll a fast BVH representation in Haskell
I'm playing with a Haskell Raytracer and currently use a BVH implementation which stresses a naive binary tree to store the hierarchy,
data TreeBvh
= Node Dimension TreeBvh TreeBvh AABB
| Leaf ...
13
votes
4answers
350 views
R sorts a vector on its own accord - bad boy!
df.sorted <- c("binned_walker1_1.grd", "binned_walker1_2.grd", "binned_walker1_3.grd",
"binned_walker1_4.grd", "binned_walker1_5.grd", "binned_walker1_6.grd",
"binned_walker2_1.grd", ...
13
votes
3answers
1k views
how to use iterator in c++?
I'm trying to calculate distance between 2 points.
The 2 points I stored in a vector in c++: (0,0) and (1,1).
I'm supposed to get results as
0
1.4
1.4
0
but the actual result that I got is
0
1
-1
...
13
votes
6answers
841 views
How to initialise a STL vector/list with a class without invoking the copy constructor
I have a C++ program that uses a std::list containing instances of a class. If I call e.g. myList.push_back(MyClass(variable)); it goes through the process of creating a temporary variable, and then ...
13
votes
5answers
4k 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 would change that it ...
13
votes
11answers
6k views
What's faster, iterating an STL vector with vector::iterator or with at()?
In terms of performance, what would work faster? Is there a difference? Is it platform dependent?
//1. Using vector<string>::iterator:
vector<string> vs = GetVector();
...
13
votes
5answers
2k 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 2D games (mostly ...
13
votes
4answers
6k views
R: How to access the last value in a vector?
Yes people, even though I'm talking about the R Project for Statistical Computing, it can still require programming!
Suppose I have a vector that is nested in a dataframe one or two levels. Is there ...
12
votes
3answers
354 views
Is STL Vector calling a destructor of a not-allocated object?
The folowing code shows an output not expected:
class test
{
public:
test()
{
std::cout << "Created" << (long)this << std::endl;
}
~test()
{
...
12
votes
5answers
408 views
Why not overload operator+=() for std::vector?
I've started learning C++, so I don't know in my lack of knowledge/experience why something so seemingly simple to a rookie as what I'm about to describe isn't already in the STL. To add a vector to ...
12
votes
12answers
1k views
Thou shalt not inherit from std::vector
Ok, this is really difficult to confess, but I do have a strong temptation at the moment to inherit from std::vector.
I need about 10 customized algorithms for vector and I want them to be directly ...
12
votes
6answers
2k views
Fast vector math in Clojure / Incanter
I'm currently looking into Clojure and Incanter as an alternative to R. (Not that I dislike R, but it just interesting to try out new languages.) I like Incanter and find the syntax appealing, but ...
12
votes
6answers
1k views
C++ vector::clear
vector <weight> decoy;
void clear_decoy() {
decoy.clear();
vector<weight> (decoy).swap(decoy);
}
In the above method clear_decoy(), what does vector<weight> ...
12
votes
1answer
5k views
Octave / Matlab: Extend a vector making it repeat itself?
Is there a way to extend a vector by making it repeat itself?
>v = [1 2];
>v10 = v x 5; %x represents some function. Something like "1 2" x 5 in perl
Then v10 would be:
>v10
1 2 1 2 ...
12
votes
3answers
7k views
How to erase element from std::vector<> by index?
If I have a std::vector and I want to delete the x'th element how to do it?
std::vector<int> vec;
vec.push_back(6);
vec.push_back(-17);
vec.push_back(12);
vec.erase(???);
Please help!