Tagged Questions
The stdpair tag has no wiki summary.
11
votes
5answers
1k views
std::pair<int, int> vs struct with two int's
In an ACM example, I had to build a big table for dynamic programming. I had to store two integers in each cell, so I decided to go for a std::pair<int, int>. However, allocating a huge array of ...
5
votes
3answers
316 views
How to convert a sorted std::list of std::pair to a std::map
I have got a std::list< std::pair<std::string,double> >, which I know is sorted according to the std::string element.
Since I would like to do a lot of std::find_if based on the ...
4
votes
2answers
172 views
How do I assign a std::pair that have one of it's component typed const?
I'm trying to code an associative container compatible with std::map. To do so, I have to create an insert method that accept a new item in the form of an std::pair with the first component of a const ...
4
votes
2answers
272 views
Using move semantics with std::pair or std::tuple
Suppose you want to take advantage of move semantics, but one of your movable classes needs to be part of an std::pair. The purpose would be to create a function that returns an std::pair that can be ...
4
votes
2answers
166 views
std::stack corrupts return value
I've reduced my code to the following to illustrate my problem:
#include <iostream>
#include <stack>
#include <utility>
std::pair<double,double> test(double a, double b)
{
...
3
votes
2answers
106 views
std::pair of std::string and custom class fails to copy on std::map::insert(std::make_pair(string, class))
This error:
error C2678: binary '=' : no operator found which takes a left-hand operand of type 'const std::string' (or there is no acceptable conversion) c:\program files (x86)\microsoft visual ...
3
votes
4answers
2k views
union members may not have constructors, but `std::pair` okay?
union members may not have destructors or constructors. So I can't template the following class Foo on my own MyClass if MyClass has a constructor:
template<class T>
struct Foo {
T val;
...
2
votes
1answer
67 views
How does one return a reference pair from a newly inserted pair (to a map)?
How do I correctly and efficiently return a pair from a newly inserted pair to a map?
inline pair<unsigned int, T> *createObj(unsigned int UID){
static pair<unsigned int, T> ret;
...
1
vote
3answers
69 views
Is it possible to cast a pair<Key, Value> to a pair<const Key, Value>?
So I have a smart iterator that emulates a map const_iterator, and it needs to build the return type internally. Obviously, I'd like to store a pair<Key, Value> in my iterator class (since I ...
1
vote
2answers
603 views
Safe To Modify std::pair<U, V>::first in vector of pairs?
I'm currently working on a DNA database class and I currently associate each row in the database with both a match score (based on edit distance) and the actual DNA sequence itself, is it safe to ...
0
votes
4answers
176 views
Difference between std::pair and std::tuple with only two members?
Is there a difference between an std::pair and an std::tuple with only two members? (Besides the obvious that std::pair requires two and only two members and tuple may have less...)
0
votes
3answers
359 views
converting an integer to a std::string accepted by an std::pair
I have this function that converts an integer to a std::string:
std::string intToStr(const int n) {
stringstream ss;
ss << n;
return ss.str();
}
It's worked well so far, but now ...