The Standard Template Library, or STL, is a C++ library of generic containers, iterators, algorithms, and function objects. When C++ was standardised, large parts of the STL were adopted into the Standard Library, and these parts in the Standard Library are also sometimes referred to collectively ...
0
votes
1answer
39 views
Returned iterator from method like std::find_if does not match regular iterator
I have this std::find_if() like method that returns found iterator (that matches "condition" functor).
template<class T, class Function>
typename std::set<T>::iterator ...
0
votes
1answer
34 views
“undefined reference to std::_Rb_tree_const_iterator” when returning iterator
I'm trying to implement a simple std::find_if() like function to use (I'm not allowed to use it in my homework).
This is my implementation:
template<class Iterator, class Function>
Iterator ...
0
votes
3answers
51 views
Function object: Invalid argument
I am quite new to C++ and STL. There is something that I don't understand here:
class Foo
{
public:
void operator()(int& bar) { std::cout << bar << std::endl; }
};
int main(int ...
2
votes
1answer
36 views
std::reverse_copy “error: function call has aggregate value”
#include <vector>
#include <iostream>
#include <algorithm>
#include <iterator>
using namespace std;
int main()
{
int arrA[] = {1, 2, 3, 4, 5, 6, 7, 8, 9};
...
3
votes
0answers
62 views
PPL Container performance
I am writing a Server application which takes data from multiple sources at once and stores it in it's internal database (currently a std::set).
I have just been looking at Microsoft's ConcRT PPL ...
0
votes
0answers
45 views
Is the constructor parameters unnecessary in <stl_hashtable>
In SGI STL implementation <stl_hashtable.h> the hashtable class has a ctor like:
template <class Value, class Key, class HashFcn,
class ExtractKey, class EqualKey,
class ...
0
votes
3answers
36 views
What is the definition of _Rb_tree_increment in bits/stl_tree.h?
I want to learn codes of the red-black tree in stl. And I found a function named _Rb_tree_increment in the file bits/stl_tree.h
it writes:
143 _GLIBCXX_PURE _Rb_tree_node_base*
144 ...
2
votes
2answers
67 views
Trashes in copied std::list
I have graph class that looks like:
class Graph {
public:
typedef unsigned int size_type;
typedef std::list<size_type> Neighbours;
protected:
size_type m_nodes_count, ...
0
votes
2answers
37 views
Extracting a class member from a vector of class instances (as a new vector)
I have a class/structure as follows:
struct MyStruct {
std::string member_one;
std::string member_two;
};
I create a vector of MyStruct, std::vector<MyStruct> of some length N with the ...
4
votes
1answer
56 views
C++ STL allocators
I have a (potentially dumb) question about the C++ STL. When I make a container (vector, set, map, etc), is it allocated on the stack or on the heap? If I make a set and put 5 million strings, will I ...
-2
votes
2answers
68 views
C++ slicing caused by reference
I have problem to understand the behavior of the following code, which I modified from an example for C++ slicing:
#include <stdio.h>
#include <iostream>
struct B {
int x;
B() ...
2
votes
2answers
45 views
Merging sets in C++, also overloading operators
I'm trying to merge two sets of quartets (a class which I've defined).
Before I go into the merging, let me ask a question about operator overloading. If I want to overload the operator of a class, ...
2
votes
3answers
112 views
Unusual behavior with std::vector
I've written a rather complicated set of classes to deal with iterating over a stream (string, file or memory). These are NOT std streams nor are they related. Anyway, due to iterating over these ...
2
votes
1answer
61 views
STL List adding and removing chosen element
I'm coding simple program which uses lists. I've already created my list with all of its functions, but now I would like to convert it to STL. I've successfully done it a few of my functions but I'm ...
1
vote
5answers
98 views
Two dimensional vector of integer C++. What's wrong?
I have trouble with two dimensional vector. Example:
vector < vector<int> > data;
int i = 0;
int int_value;
while (i < 10 )
{
cin >> int_value;
data[i].push_back ...
5
votes
4answers
198 views
How do I sort efficiently a quadruple structs in C++?
I have a struct with members x,y,z and w. How do I sort efficiently
first by x, then by y, by z and finally by w in C++?
0
votes
1answer
51 views
C++ std::vector::const_iterator issue
So I am relatively new to C++ and I am having an issue with the following std::vector::const_iterator:
for (vector<shared_ptr<FSNode>>::const_iterator itr = ...
0
votes
0answers
68 views
C++ : erase while iterating a global container
I have the following code in a function.
events is a global variable:
map<string, map<string, deque<Event> > > events;
this is my function:
void ...
1
vote
3answers
61 views
std::vector and std::list find_if and max_element performance
I am confused about performance of my code tested for std::vector and std::list. Is there a difference between these two when it comes to find_if and max_element?
0
votes
2answers
59 views
overloading operator< for pointers to class object
I'm trying to figure out how to implement an operator< overload for an Item Pointer class that points to an Item class object. It is part of a program that stores pointers to Items in an STL set. ...
3
votes
3answers
71 views
Reducing the size of a std::vector without a default constructor
I have a templated class using a std::vector of it's template argument. The argument may not be default constructible. I want to reduce the size of the vector (cut it to a given size). Obviously
...
0
votes
3answers
41 views
gives error on find_first_of function with binary predicate
Here is the code
#include <string>
#include <vector>
#include <string>
#include <algorithm>
using namespace std;
class test {
struct con {
string s1;
...
2
votes
2answers
76 views
How to create the right interface for std::transform
The signature of transform is:
OutputIterator transform (InputIterator first1, InputIterator last1,
OutputIterator result, UnaryOperation op);
And I want to create a generic ...
1
vote
3answers
89 views
Using STL's list object for Stack creation
I want to create a list of stacks in C++ but the compiler gives me some error messages:
#include <list>
#include <stack>
class cName
{
[...]
...
0
votes
1answer
32 views
Joining fragments of messages together
I need to write a function that can receive fragments of different messages, and then piece them together. The fragments are in the form of a class msg, which holds information of
int message_id
int ...
1
vote
7answers
75 views
c++: popping an element by key out of an std::map
I'm interested in removing an element with a specific key out of a map and use this element.
Something that will look like:
itr = MyMap.pop(wantedKey);
//Now MyMap is missing the element which has ...
12
votes
5answers
558 views
How to write a for loop that uses both an iterator and an index counter?
I have a function that looks like this:
void myclass::myfunc()
{
int i;
for( std::vector<Foo>::iterator it = var.begin(), i = 0; it < var.end(); it++, i++ )
{
/* ... */
...
0
votes
2answers
52 views
embedding a PNG image in C++ as a vector or array
Can anyone point me in a direction so that I can take PNG images that I have and read them in and then store the data of the PNG Image into an array or vector (or some other data structure) so I can ...
1
vote
1answer
88 views
Template for stl container
Inside the declaration of the class Density, I built these member function:
class Density {
public:
template <typename Container>
void printStream (Container<Point>::iterator lo, ...
0
votes
1answer
39 views
How to avoid thrid party lib(no source codes) to allocate memory from physical memory?
Suppose this scenario: I refer to a third party lib in my C++ app, but I don't want the third party lib to use my physical memory at all. Instead, I want it to only allocate memory from hard disk. I ...
2
votes
1answer
40 views
Relocation on assignment when using a std::deque
Does the C++ standard guarantee that when one pushes back a new element into a deque, none of the pre-existing elements will be relocated to a new memory address?
31
votes
2answers
1k views
Why has the std::vector::resize signature been changed in C++11?
What are the reasons behind the change in std::vector::resize from the pre-C++11:
void resize( size_type count, T value = T() );
to the compatible C++11 form:
void resize( size_type count );
void ...
1
vote
1answer
39 views
How operations are performed for dynamic array?
I have studied everywhere in books about Dymanic arrays. I have used them in STL of C++.
But I am still unclear about what are Dynamic arrays. How the operations over Dynamic arrays are implemented.
0
votes
1answer
36 views
C++ Map default argument typedef requirement
It seems my compiler is dying on this code block below, and is only resolved once I typedef the map for the default constrcutor on GCC 4.1.2. Is there some C++ or GCC oddity I'm missing?
Error: ...
0
votes
0answers
7 views
How can I use the G++ array_allocator with XCode G++ 4.2.1?
In the following, bt_ustring.h pulls in bt_us_char_traits, which is a set of simple traits that work fine with basic_string<BT_Char16, bt_us_char_traits>.
When I try to use UString from this ...
4
votes
1answer
172 views
Is there a better way to check if a STL container is a multi* container
During my work on writing a unit test for a framework that shall work with all kind of standard C++11 container I stepped over the problem that I want to create in a generic way test data.
Here I need ...
1
vote
2answers
64 views
Understanding vector<shared_ptr<T> >, shared_ptr<vector<T> >, or vector<T>
The Node is the data structure used to store the Node when we parse a graph.
Here is the sample code:
struct NodeA {
vector<string> vecStrs; // the size of the vecStrs keeps increasing!
};
...
2
votes
2answers
57 views
private constructor with STL container deque
I have a class Table using std::deque
class Table {
public:
Table():columns_(10) {};
private:
std::deque<Column> columns_
}
I want that only class Table can initialize the class column so ...
1
vote
2answers
148 views
How can an element find its own index in a vector?
I'm trying to reimplement a tree data structure using std::unique_ptr, and the idea is that the parent node would own its children, who are stored in a vector of unique_ptr.
For interface reasons, I ...
5
votes
4answers
172 views
algorithm to add values of two ranges and place them into a third one
I was just wondering if there was anything (either in c++11 or boost) that could help me do something like this:
std::vector<int> v1 = {1, 2, 3};
std::vector<int> v2 = {2, 5, 4};
...
0
votes
1answer
17 views
iterate over a set cause a coredump
I got a problem,my program coredumped when i iterator a set,the code is below,when the size of the set is below 50000,it runs okay,while it'll fail when the size is bigger than 50000(almost).I did ...
4
votes
5answers
126 views
Why no front() method on std::map (and other associative containers from the STL)?
The STL reference seems to make a conceptual difference between :
'Sequence containers' (array vector deque forward_list list) on one hand
'Associative containers' (set multiset map multimap ...
0
votes
4answers
45 views
STL iterable container like priority_queue
I'm new to STL containers (and C++ in general) so thought I would reach out to the community for help. I basically want to have a priority_queue that supports constant iteration. Now, it seems that ...
0
votes
1answer
33 views
Can boost:algorithm::join() concat a container of floats?
Boost join can be used to concatenate a container of strings optionally separated by a separator string. In this stackovwerflow example: A good example for boost::algorithm::join
My STL skills are ...
6
votes
1answer
32 views
What type of Container should I use to hold a 2D Tile Based World's Tile Objects?
I have a 2D tile based world, which is created using a simple array: World[100][100].
I plan on making the game multiplayer, so I figure it would be good to have the SERVER send the CLIENT all the ...
0
votes
1answer
64 views
std::accumulate not acting as expected
I am getting an unexpected result using std::accumulate with test code. I am trying to add up a large vector of doubles but for some reason the value is overflowing:
#include <iostream>
...
0
votes
1answer
28 views
C4800 warning, how to find where in the source code
Is there a smart way to find the relevant places in the code when you get warnings like this? It seems the only line number shown refers to standard headers but not the actual code. I must add that ...
0
votes
2answers
41 views
Using std::queue with shared_ptr?
Consider the following bit of code:
#include <queue>
#include <memory>
std::shared_ptr<char> oneSharedPtr(new char[100]);
std::queue<std::shared_ptr<char>> ...
1
vote
2answers
78 views
How can I extend stl classes to have my own methods? [duplicate]
I know that it is a bad idea to inherit from stl classes. But is there any other way to extend them?
Let's say that to improve readability, I wanted to be able to call an "add" method on my vectors ...
5
votes
2answers
106 views
C++ STL, constant iterators, find()
I'm currently learning STL and I got some uncertainities about find and const iterators.
Let's say I have a find function:
some_stl_container::const_iterator found = myContainer.find(value);
After ...

