1
vote
2answers
79 views
In-place C++ set intersection
The standard way of intersecting two sets in C++ is to do the following:
std::set<int> set_1; // With some elements
std::set<int> set_2; // With some other elements
…
2
votes
10answers
337 views
Why doesn’t C++ reimplement C standard functions with C++ elements/style?
For a specific example,consider atoi(const std::string& ).I am very frustrated about this,since we programmers would need to use it so much.
More general question is why does …
0
votes
6answers
160 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
42 views
Is it possible to use a RA-iterator out of range?
Consider the following code:
typedef std::vector<int> cont_t; // Any container with RA-iterators
typedef cont_t::const_iterator citer_t; // Random access iterator
cont_t v( …
3
votes
8answers
208 views
What’s An Algorithm or code for obtaining ordinal position in a list sorted by value in c++
Hi,
This is similar to a recent question.
I will be maintaining sorted a list of values. I will be inserting items of arbitrary value into the list. Each time I insert a value, …
1
vote
3answers
72 views
How to efficiently generate random subsets of rows from a matrix
Hi all,
I have a large matrix M implemented as vector<vector<double> with m rows, i.e. the matrix is a vector of m vectors of n column elements.
I have to create two su …
0
votes
4answers
99 views
strange std::vector problem with uint32_t on Visual Studio 2008
This works fine:
std::vector<int> v;
v.push_back(123);
but this throws a std::length_error:
std::vector<uint32_t> v;// or vector<unsigned __int32>
v.p …
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
6answers
176 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 fo …
29
votes
30answers
4k views
Hidden Features and Dark Corners of STL?
C++ developers, all know the basics of C++: Declarations, conditionals, loops, operators, etc.
Some of us even mastered the stuff like templates, object model, complex I/O, etc.
…
16
votes
13answers
357 views
When should you use an STL other than the one that comes with your compiler?
I was curious about STL implementations outside of what's packaged with gcc or Visual Studio, so a quick Google search turned up a few results, such as:
Apache stdcxx
uSTL
rdeSTL …
3
votes
3answers
254 views
Which sorting algorithm is used by STL’s list::sort()?
I have a list of random integers. I'm wondering which algorithm is used by the list::sort() method. E.g. in the following code:
list<int> mylist;
// ..insert a million valu …
1
vote
5answers
106 views
C++ STL unordered_map problems and doubts
Hello,
after some years in Java and C# now I'm back to C++. Of course my programming style is influenced by those languages and I tend to feel the need of a special component that …
2
votes
2answers
158 views
What is the reason for the entire C++ STL code to be included in the .h rather than .cpp/.c files?
I just downloaded the STL source code and I noticed all the definition for the STL template classes are included in the .h file. The actual source code for the function definition …
2
votes
8answers
143 views
Insert into an STL queue using std::copy
Hi, I'd like to use std::copy to insert elements into a queue like this:
vector<int> v;
v.push_back( 1 );
v.push_back( 2 );
queue<int> q;
copy( v.begin(), v.end(), i …
