std is the name of the namespace containing the C++ Standard Library

learn more… | top users | synonyms (1)

0
votes
0answers
40 views

Efficiency of std::min(int) in c++

There is a loop in my code that iterates 100 million times (required for 100 million replications of a simulation model). For each of the 100 million iterations, I retrieve a value from an array ...
0
votes
2answers
19 views

sprintf_s template base overload not working

VS2010. I am converting sprintf stmts into sprintf_s. I noticed there are two implementations, from intellisense: int sprintf_s<_Size>(char (&_Dest)[_Size], const char *_Format, ...) int ...
0
votes
1answer
85 views

C++ large string initialization and use

Hi I have an array of around 500 strings. Multiple functions in my class use this variable. I obviously do not want to initialize that array multiple times throughout my program. What would be the ...
3
votes
3answers
63 views

What is the difference between strtol and strtoul?

I met some unexcepted result of strtol in c Here is the sample program. #include <string.h> #include <stdio.h> #include <stdlib.h> int main() { printf("%x\n", ...
1
vote
1answer
49 views

C++11 for xCode errors

I want to use std collections, for example std::vector in my xCode 4.5 project. Following the explanation here no type named 'shared_ptr' in namespace 'std' I changed my compiler ...
1
vote
5answers
51 views

Knowing when to delete associated user data from a std::map<void *, …>

I have a map of addresses that allows me to store arbitrary data with objects. Basically, a library I'm writing has a templated function that winds up storing arbitrary data with objects. ...
-1
votes
1answer
37 views

c++11 map.at reject values from a enum [closed]

I was developing a class to warp objects from a libray and I found the following problema: The library generates a series of values stored in a map; this map uses a enum type as key: enum key_type { ...
13
votes
1answer
187 views

Can std::function be move-constructed from rvalue reference to a temporary functor object?

I have an untemplated functor object that I'm trying to store as a std::function inside another object. This object is really heavyweight, so it's marked as uncopyable, but it does have a move ...
0
votes
2answers
39 views

Copying from std container frm arbitrary source object

I created a read only iterator which allows me to use it in a for loop more conveniently then with the std iterators, similar to what boost does with the FOREACH (not as good but good enough :)) Now ...
1
vote
1answer
136 views

Choosing the best stucture for my list of players

I am in trouble choosing the most pertinent structure for my data, here are the explanations: I am actually working on a game project for school, a Bomberman like game in c++. I am designing the Map ...
0
votes
1answer
14 views

list container on stack and accessed in other function

I am confused about storing the list container allocated on stack, and accessing the stored list container in some other function. Please suggest if it's better to put everything on heap ? Putting ...
1
vote
0answers
44 views

Default valarray passing doesn't work

In C++, I have two functions: do_work(args, std::valarray<double> arr=std::valarray<double>(0.0, 1)) { very_complicated_things } wrapper(args, std::valarray<double> ...
2
votes
2answers
44 views

std::wstring not working with the [] operator of std::map<const wchar_t*, const char*>

I have a const std::map<const wchar_t*, const char*> which is in the global namespace. It looks like this: .h file typedef std::map<const wchar_t*, const char*> ShaderMap; const ...
1
vote
2answers
56 views

Why use namespace if iostream is imported

I am beginner at C++, and I have recently been introduced to namespaces like std. However, if functions like cout and endl are defined in the iostream header file, why include the std namespace at ...
0
votes
1answer
5 views

C++ SLT: how to insert in sorted order

I know that std::find() helps to find the iterator position of a given value. And std::insert() insert a given value into the container at a known position. However, is there any function I can call ...
8
votes
1answer
169 views

template enable if is pointer

I try to make a class to manage resources easily (ResourceManager). For that I use the template with C++11. Here's what I do: template<class K,class T> class ResourceManager { public: ...
0
votes
1answer
23 views

Boost Multiarray of std::vector

I'm new to Boost (and also to stackoverflow) and want to use a multiarray of vectors. I have done it that way: typedef boost::multi_array<std::vector<Vector3_t>, 2> array_type; ...
0
votes
4answers
88 views

std::sort that also keeps track of number of unique entries at each level

Say I have a std::vector. Say the vectors contain numbers. Let's take this std::vector 1,3,5,4,3,4,5,1,6,3 std::sort<std::less<int>> will sort this into 1,1,3,3,3,4,4,5,5,6, How would ...
0
votes
2answers
58 views

Find an element of vector which is presented in the map

I need to find an element of vector which is presented in map. Hard part is that vector consists of structures, so you should call member function to extract value form the structure first to compare ...
0
votes
2answers
97 views

'sqrt' is not a member of 'std'

I compile my program in linux - it has the following line : std::sqrt((double)num); On windows it is ok,but on linux I get 'sqrt' is not a member of 'std' I have an include for math.h what is a ...
0
votes
2answers
42 views

Wrong behaviour of set<Vec3b>

I have a set of Vec3b to hold posible RGB pixel values. std::set<cv::Vec3b> used_colors; But behaves weird: used_colors.insert(cv::Vec3b(100, 255, 255)); // this returns 1 although (100, ...
0
votes
1answer
33 views

How to expose std::pair to python using boost::python?

How to expose std::pair to python using boost::python? When I expose for example vector<string> I simply write: class_<std::vector<std::string> >("StringVec") ...
6
votes
1answer
103 views

Why do I have to clear std::stringstream here?

I wrote a short testprogram to see if I can append to a string using stringstream repeatedly. In the first version I got Output1 and I don't really understand why s1 stays empty. I found out that I ...
6
votes
2answers
157 views

Can I return an optional from a constexpr function?

Can I return an optional from a constexpr function? Why? If yes, how does it work? I'm interested in both boost::optional and std::optional. Do they behave the same?
0
votes
1answer
75 views

signaling parent threads in c++11

I have a function that I want to run in different threads. The function populates a data structure, for example: per_thread(int start_value, std::vector<SomeStruct>& reference) { for ( ...
1
vote
3answers
78 views

Hexadecimal in String to Hexadecimal in Integer

I want to know how to convert something like string x = "1f" to int y = 0x1f, every topic I found was solved by turning it to simply the integer value of it (31) or turning the string to a hexadecimal ...
0
votes
1answer
50 views

What happens when we try to erase non existent key from hash_set

What happens when we try to erase non existent key from hash_set class from SGI's STL? Does the call to hash_set::erase first try to find the key and then delete it?
3
votes
1answer
167 views

C++ function call with default argument in std::array?

Now I have a function in C++ void F( std::array<int,3> x ) { //... } I hope the argument 'x' could have a default value, how can I do this? If not a function argument, I can simply use ...
0
votes
1answer
36 views

Pointer to complex<double> sin

I try to compile this short example: #include<iostream> #include<math.h> #include<complex> typedef double (*d_sin)(double); typedef std::complex<double> ...
0
votes
0answers
31 views

error LNK2001 std::basic_string

When trying to build an SDL project, I'm constantly getting a linker error for: class std::basic_string<... int const I can get rid of these errors by getting rid of: using namespace std; But ...
-1
votes
0answers
77 views

vector< vector<bool> > resize() operation fails?

I'm stumped with this failure of some simple code. I wish to initialize a 2D matrix of bool values. The code for initialization looks like this: flag_matrix_t create_flag_matrix(size_t width, size_t ...
2
votes
1answer
121 views

Usage Issue of std::align

Consider the following code: #include <memory> #include <iostream> #include <cstdio> using namespace std; // Visual Studio 2012 don't have alignof as a keyword. #define ...
2
votes
1answer
49 views

Should I be using erase-remove idiom here?

I have an std::vector<IRenderable*> (_pBkBuffer in the code below). It contains a number of static objects (at the start of the vector) that don't change, followed by a variable number of ...
0
votes
0answers
51 views

std::vector of function pointers

I have a vector of function pointers. class GameState : public AppState{ private: void level1(); std::vector<void (*)()> levelFunctions; }; How do I push things into this vector? I ...
2
votes
1answer
61 views

How to output Polish characters in C++ console application? [duplicate]

I've try this simple code to output polish characters using 'std::wstring' class. The class is constructed succesfully from wchar_t array but I don't know how to output it to the screen. That line ...
3
votes
1answer
43 views

Sequential sequence containers OR How to pack vectors

Imagine I have two vectors: std::vector<int> A,B; //Push a bunch of data into A //Push a bunch of data into B For whatever reason, I want to create an interface to these vectors such as ...
3
votes
1answer
116 views

Slow iterating over string using pointers

I would love to see why one of the following solution is MUCH slower than the other. Lets concider following code: // create a very long string int x,y; bool b; char c[10000]; for ...
0
votes
2answers
47 views

I don't understand what's wrong with this VHDL code?

I have the following code: entity wave_select is port( address:in std_logic_vector(6 downto 0); ws1: in std_logic; ws0: in std_logic; wave_out: out std_logic_vector(6 downto 0)); end wave_select; ...
0
votes
2answers
36 views

Keeping std::map balanced when using an object as key

I am writing some code where I am storing lots of objects that I want to get back based on set criteria. So to me it made sense to use a map with an object as a key. Where the object would contain the ...
0
votes
0answers
53 views

Removing object from multiple std lists [closed]

Hi im hove problem with memory leak. In short code looks like this: class P1 { int a; //some functions P1(); virtual ~P1(); } class ...
2
votes
1answer
63 views

how to compare two std::set?

I do such compirison of two std::set #include <cstdlib> #include <cstdio> using namespace std; #include <vector> #include <set> int main(int argc, char** argv) { int ...
2
votes
3answers
79 views

std::map<string,int> default initialization of value

This piece of code seems work well, with default value for they value_type (int) as 0; does it work for all cases? std::map<std::string,int> w; for (const auto& t: str) w[t]++; What ...
1
vote
1answer
126 views

c++11 std array - differences between gcc and visual studio

I have a problem with this part of code: typedef std::array<u32, 3> my_array; void foo() { my_array a1{{1, 2, 3}}; a1 = {{1, 2, 3}}; // PROBLEM - does not work; my_array a2{{3, 2, ...
0
votes
1answer
37 views

Iterating through a std::map and adding it to a ListView [closed]

I'm learning C++ but I can't loop through my map to add items to my ListView. My Map: std::unordered_map<int, std::unordered_map<char*, char*>> mp; Here is my code to add to ListView ...
0
votes
2answers
38 views

Error while deleting a vector pointer to pointers

What do you think about this function? void deleteVector(vector<Persistent*> *v) { if (v) { for (int i = 0; i < v->size(); i++) delete v[i]; delete v; ...
1
vote
2answers
62 views

Segmentation fault when calling vector.erase()

Whenever I call dominoes.erase() which is of type std::vector<Domino> I get a segmentation fault; even if I hard code the value. A separate member function calls dominoes.push_back() to load ...
2
votes
1answer
104 views

Are std::map and std::vector thread safe?

I am developing a multi threaded application, each thread will read (there will be no modifying of structures) from a group of maps and vectors. Can anyone please advise, since the threads are only ...
0
votes
2answers
33 views

declaring a priority_queue in c++ with a custom comparator

I'm trying to declare a priority_queue of nodes, using bool Compare(Node a, Node b) as the comparator function (which is outside the node class). What I currently have is: priority_queue<Node, ...
4
votes
2answers
448 views

C++ STL map: is access time O(1)?

Is key look up on std::map O(1)? I thought it was until I thought about it more. It is based on a tree implementation so the lookup time should be O(log N), correct? And, is it possible to have O(1) ...
0
votes
1answer
84 views

Most efficient way to use C++11 unordered_map in a read/write

In a part of my program, I want to update a given value of an unordered_map. The problem can be simplified like this: #include <iostream> #include <stdlib.h> #include ...

1 2 3 4 5 25