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
47 views
The use of std::bind with a binary operation function in C++
I am trying to learn how the std::bind works. I wrote the following:
#include <iostream>
#include <algorithm>
#include <functional>
using namespace std::placeholders;
int ...
2
votes
0answers
52 views
Are member functions of std::wstring_convert thread safe?
We're using a
std::wstring_convert<std::codecvt_utf8_utf16<wchar_t>> converter;
in a logger of ours that gets a UTF-16 string from a legacy component and converts it to UTF-8 that we ...
-4
votes
2answers
55 views
Iterator of map STL C++ it doens't work? [closed]
I have strange problem. I declareded iterator of map::iterator but it doesn't work. Where is problem?
string name "John";
int count = 200;
map<string,int> store;
...
2
votes
2answers
61 views
Using object inside constructor
I am creating my own vector class inheriting the STL one. I have a problem while creating the object.
Here is my class.
using namespace std;
template <class T>
class ArithmeticVector : ...
0
votes
3answers
64 views
Inheriting vector class with different types
I am trying to inherit STL vector class to create a new class on my own. It will use vector's base properties but i will add some new functions like sum or divide. The problem here is i am trying to ...
0
votes
1answer
30 views
Invalid null pointer error when converting std::chrono::system_clock::time_point::min() to string
I am following an example in Nicolai M. Josuttis' "The C++ Standard Library (Second Edition)", page 152-153, which details an example to print the epoch, current time, minimum and maximum times of the ...
1
vote
2answers
71 views
Implement Iterators Even When Not Needed? C++
I have a container called "ntuple" that is essentially a C array and length. It's main purpose is to be the argument of multi-dimensional math functions. As of now, it's really fast and utilizes ...
-3
votes
0answers
35 views
“Boost.Container” vs “Boost.Intrusive” vs “Folly Containers” vs “Boost Pointer Container” etc [closed]
Forgive me if this question has already been asked elsewhere,
but I could not get hold of a precise (i.e. complete) answer by a simple search...
The question is the following:
is out there any ...
3
votes
4answers
57 views
Using stable_sort, when sorting vector of objects
I have class Passanger that has variables string name; string station; string ticket;
and then I have another class and within this class I have vector<Passanger*> myQueue;
now I want to use ...
1
vote
1answer
78 views
Memory allocation of values in a std::map
I've had some experience in C++ from school works. I've learned, among other things, that objects should be stored in a container (vector, map, etc) as pointers. The main reason being that we need the ...
1
vote
2answers
35 views
Using pseudo-random number engines in deterministic, multi-threaded applications?
I'm trying to use the C++11 random number generators to shuffle decks of cards. I've discovered (by looking in the implementation) that the random number sequence produced by two engines are the same ...
2
votes
1answer
64 views
STL: Initializing a container with an unconstructed stateful comparator
This has been running through my mind as a possible solution to an issue, however as it is a fairly obvious technical violation of something in C++, I wanted to know how likely to it is to fail, ...
1
vote
2answers
78 views
C++ map of pointers to maps
Related to a different question I have posted for which I am trying to find a solution some how - C++ dynamic way to determine the container to use
Noticed similar links:
How to use a string as a ...
2
votes
1answer
53 views
Template class with template container
How can I declare template class (adaptor) with different containers as template arguments?
For example, I need to declare class:
template<typename T, typename Container>
class ...
1
vote
3answers
62 views
c++ light appendable array container
This relates to another question I asked a while back at Size of Qt containers: is QMap much larger than Qlist?.
Basically I would really like to re-implement a VERY LIGHT container which allows to ...
0
votes
4answers
65 views
howto securely mix std::ifstream's tellg, seekg and read(*,n) methods in text-mode
I'm trying to read in a file with std::ifstream line by line in a loop. In the same loop, I'm trying to find two tags which enclose a block which I'd like to read as a whole.
I thought, I could track ...
2
votes
2answers
53 views
How do I fix my STL style container to hold incomplete or abstract types?
A few days ago, I took it upon myself to try and write a basic tree implementation in the same style as the STL containers. Now I am trying to use it in my code, but two things don't seem to work that ...
0
votes
2answers
45 views
Fill a vector with alphabet chars using std::generate_n
I want to fill a vector with the letters of the alphabet. So I wrote the following:
#include <iostream>
#include <algorithm>
#include <vector>
#include <iterator>
char i='a';
...
0
votes
2answers
32 views
`pthread_mutex_t`, `sem_t` in a `std::map`
Basically I'm maintaining a set of states for a bunch of objects:
#define SUBSCRIPTION_TYPE int
std::map< SUBSCRIPTION_TYPE , bool > is_object_valid;
And I need to protect each element in ...
0
votes
3answers
64 views
std::unordered_map containing another std::unordered_map?
We are working on a game project for school in c++.
I'm in charge of the map object, who will contain Entities like bombs, players, walls and boxes.
I have 3 containers in my map:
A std::list for ...
0
votes
1answer
37 views
Ouput to text file using C++ STL library in Android
I have an Android application that use JNI. In JNI I used C++ STL library to output some data into a text file.
This is the snippet code.
#include <iostream>
#include <fstream>
float ...
0
votes
2answers
52 views
C++: How to construct object with two iterators?
I have sample big integer class.
It contains dynamic array of digits that comprise the big integer.
I would like to construct objects of this class using 2 iterators (begin and end) in order I can ...
20
votes
4answers
476 views
What happens when you call data() on a std::vector<bool>?
C++11 has implemented data() member function on std::vector, which gives you a pointer to the memory array. Does this mean the template specialization std::vector<bool> have this member as well? ...
0
votes
2answers
64 views
std::greater not defined in MSVC2012
How come that std::greater is no more part of the std namespace in Visual Studio 2012? I now need to include <functional>
I thought STL libraries remained the same across toolsets
1
vote
1answer
17 views
the design of inner function _S_oom_malloc in SGI-STL allocator
The code is as follows:
template <int __inst>
void*
__malloc_alloc_template<__inst>::_S_oom_malloc(size_t __n)
{
void (* __my_malloc_handler)();
void* __result;
for (;;) {
...
0
votes
2answers
67 views
Where to place STL / template code c++?
Hi I have what is hopefully a quick question. As part of homework I've been asked to write my own template vector class (most of the code is there it just needs to be expanded upon). While I ...
0
votes
3answers
46 views
How to delete several elements from list at once in c++?
What program does is as follows:
The list contains product information which includes product id, name, price etc.
User enters product id
Check the id if it already exist in a list
So if the id ...
0
votes
0answers
28 views
IBM Rhapsody containers, need algorithms similar to STL
I am using IBM Rhapsody in C++ and I often need to perform a generic algorithm on Rhapsody containers like OMCollection, OMList or OMMap similar to STL's for_each, copy, remove, count_if, etc etc ...
0
votes
3answers
72 views
How to map 2 char* arrays directly into std::map<std::string,std::string>
I have 2 char arrays like "const char *arr1[ArrSize] = {"Blah1", "Wibble1", "Shrug1"};".
For putting them into a vector I found a nice quick solution:
void fillVecTest()
{
const int ArrSize = 3;
...
2
votes
4answers
95 views
std::map - how to change key sorting?
I have a problem with std::map.
I'm using it to map some list of pairs under a specific index:
map<string, list<pair<string, int>>> List;
It's used in Dijkstra algorithm.
The main ...
3
votes
3answers
82 views
How to wrap C 2D arrays (Foo**) in C++ code?
I use a C library which operates on 2D arrays in the form of Foo**. I use it inside C++ code, so I need some sort of wrapper. With 1D arrays it's straightforward because vector iterators are just ...
1
vote
1answer
62 views
Getting around container covariance in C++/STL
First lets start with the problem. I have a tree, and I want to do the following:
class Base {
std::vector<Base*> children_;
};
class DerivedA : public Base {
//adds some members
};
...
1
vote
3answers
139 views
C++ STL set implementation
Why is the C++ set implemented as a binary tree instead of as a hashset, which can provide average case complexity of O(1) as compared to the O(log n) provided by a binary tree?
4
votes
3answers
120 views
Why is the C++ STL set container's count() method thus named?
What it really checks for is contains() and not the count of the number of occurrences, right? Duplicates are not permitted either so wouldn't contains() be a better name than count()?
-1
votes
3answers
87 views
Access STL map by value
I have a problem accessing a Map by value. I do not want to access the value using find("string_value"), but as find(s) while string s="string_value". See below:
map<string, string> my_map;
...
2
votes
3answers
80 views
conditional iterator over two arrays with STL
I have two arrays. The typs are int and bool.
The bool array indicates if an element is already deleted or not.
Now I want a function that returns an iterator which only iterates over not deleted ...
0
votes
1answer
65 views
sort on a vector of pointers changes data in a copy of the vector?
I have a vector of pointers to objects, and at some point, making a second vector with sub-elements of that vector. Now, sorting the original vector changes the elements in the second vector (there ...
0
votes
2answers
58 views
Finding connections in 3 vectors of string
I have written in C++ some code, which finds the shortest path between two cities connected by roads or by flights. Cities can be connected with direct flights or indirect ones.
User can type flights ...
1
vote
1answer
33 views
Creating a data structure that consists of a linked balanced bst and a doubly linked list
I am trying to create a data structure in which there is a balanced BST and a doubly linked list.The linked list will be smaller than BST and hence at any time will hold only a subset of elements from ...
5
votes
1answer
164 views
Does it make sense to use std::shared_ptr<std::vector> instead of boost::shared_array?
Now I'm rewriting a part of my code to use C++11 standard. In some places I found the following code:
boost::shared_array<uint8_t> array;
Does it make to replace it with:
...
11
votes
1answer
187 views
C++11: std::vector::shrink_to_fit complexity
The article at cppreference.com tells that the complexity of std::vector::shrink_to_fit is constant. As far as I know that is only possible if the elements are not moved, because if they are then the ...
1
vote
0answers
58 views
How do I use STL algorithms with ICU's iterators in C++?
I wonder how to use ICU library iterators with STL. For instance, what if we decided to output all permutations of a string?
With std::string it looks like the following:
#include <iostream>
...
0
votes
1answer
76 views
Finding a substring passing only 2 iterators?
I have a curious problem. My fix goes into some high performance library. One of my tasks is to change the interface to use the internal string descriptor format which is a pointer and a length ...
-5
votes
2answers
91 views
List of vectors (C++)
I want to create a list of 4 vectors with variables sizes (n1 n2 3 and n4) and all filled with 0's
How can i do that ? I can do a list<vector<float> > mylist But how to put the size of ...
2
votes
2answers
45 views
C++: use own class in a multiset container
at first I'm new here and English isn't my native language so apologize for any grammatical failures but I find this community really nice so I will try to ask my question as precise as I can.
I want ...
2
votes
0answers
58 views
Memory usage with future and containers in Qt / MinGW
Consider the following test code:
#include <vector>
#include <array>
#include <future>
#include <iostream>
using std::vector;
using std::array;
using std::cout;
using ...
1
vote
1answer
110 views
How to implement a C++ serializer the idiomatic way?
As an exercise, I'm implementing an UBJson serializer in several languages. My question is: is there an idiomatic way to imlpement a custom format reader and writer in C++ ? For example, I thought of ...
-7
votes
1answer
54 views
Interesting output by iteration
if anybody can help me with the output....... explanation of why the garbage happens & number of garbage that occur.......
#include <vector>
#include <iostream>
using namespace ...
3
votes
3answers
130 views
Where do the elements removed by std::remove_if go?
The reference says that
template< class ForwardIt, class UnaryPredicate >
ForwardIt remove_if( ForwardIt first, ForwardIt last, UnaryPredicate p );
Iterators pointing to an elements ...
0
votes
1answer
35 views
C++ STL - Inserting a custom class as a mapped value
I have a class:
class Monster : public Player
{
public:
// Copy constructor - used for populating monster list in Game class
Monster(int newType)
{
type = newType;
canmove ...




