Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

61
votes
12answers
36k views

What is C# analog of C++ std::pair?

I am interested what is C# analog of C++ std::pair? I have found System.Web.UI.Pair class, but wanted something template based. Thank you!
15
votes
11answers
9k views

What is std::pair?

What is std::pair for, why would I use it, and what benefits does boost::compressed_pair bring?
9
votes
1answer
286 views

Why was pair range access removed from C++11?

I just discovered that at one point, the C++11 draft had std::begin/std::end overloads for std::pair that allowed treating a pair of iterators as a range suitable for use in a range-based for loop ...
8
votes
6answers
1k views

Is there a standard C++ function object for taking apart a std::pair?

Does anyone know if there's a de-facto standard (i.e., TR1 or Boost) C++ function object for accessing the elements of a std::pair? Twice in the past 24 hours I've wished I had something like the ...
5
votes
3answers
75 views

Global inequality comparisons for pair<> in C++ standard

As according to cppreference: In inequality comparisons (<, >), the first elements are compared first, and only if the inequality comparison is not true for them, the second elements are ...
5
votes
1answer
323 views

Closest pair of points problem

I know how to implement n log n closest pair of points algorithm (Shamos and Hoey) for 2D cases (x and y). However for a problem where latitude and longitude are given this approach cannot be used. ...
5
votes
2answers
450 views

STL map insertion efficiency: [] vs. insert

There are two ways of map insertion: m[key] = val; Or m.insert(make_pair(key, val)); My question is, which operation is faster? People usually say the first one is slower, because the STL ...
5
votes
4answers
405 views

How do I insert into a map?

I have identified four different ways of inserting into a std::map: std::map<int, int> function; function[0] = 42; function.insert(std::map<int, int>::value_type(0, 42)); ...
5
votes
8answers
4k views

Use of for_each on map elements

I have a map where I'd like to perform a call on every data type object member function. I yet know how to do this on any sequence but, is it possible to do it on an associative container? The ...
5
votes
5answers
1k views

How can I store a pair of numbers in C++?

I'm trying to learn C++ and right now I'm writing a program that needs to output a list of pairs of integers. What is the best way to handle this? I don't have the boost library available on our ...
4
votes
5answers
180 views

Put two monadic values into a pair and return it

I am playing with Parsec and I want to combine two parsers into one with the result put in a pair, and then feed it another function to operate on the parse result to write something like this: try ...
4
votes
2answers
212 views

Optimization from partial solution: minimize sum of distances between pairs

I have a problem which I like and I love to think about solutions, but I'm stuck unfortunately. I hope you like it too. The problem states: I have two lists of 2D points(say A and B) and need to pair ...
4
votes
1answer
100 views

Ocaml: matching on one item in a pair

I have a function that takes in a temp, which is a pair. type temp = (pd * string);; I want to extract that string in temp. But I can't write a function that can just match on temp since its a ...
4
votes
4answers
344 views

Does this simple Haskell function already have a well-known name?

I've just written this function which simply takes a pair whose second value is in some monad, and "pulls the monad out" to cover the whole pair. unSndM :: Monad m => (a, m c) -> m (a, c) ...
4
votes
3answers
1k views

Problem with std::map and std::pair

I have a small program I want to execute to test something #include <map> #include <iostream> using namespace std; struct _pos{ float xi; float xf; bool ...
4
votes
4answers
234 views

What is the difference between using a struct with two fields and a pair?

What is the difference regarding memory allocation and efficiency between using a struct with two fields and a pair?
4
votes
3answers
500 views

C++ container/array/tuple consistent access interface

Is there, perhaps in boost, consistent element access semantics which works across containers? something along the lines of: element_of(std_pair).get<1>(); ...
3
votes
3answers
91 views

Adding to vector pairs

I have a vector pair like such: vector<pair<string,double>> revenue; It has nothing it it but I want to add a string normally and a double from a map like so: ...
3
votes
2answers
143 views

Is it possible pair 3 or more iPads via bluetooth?

Is it possible connect 3 or more bluetooth in one local network via standart iOS sdk ? Thanks,
3
votes
6answers
1k views

Creating a list of pairs in java

Which class would work best for a non-ordered list of pairs? I'll be taking a bunch of (float,short) pairs and will need to be able to perform simple math (like multiplying the pair together to return ...
3
votes
3answers
491 views

Storing pair of ints on the list

How can I store pair of integers in List? I know I could make class for them like: class Pair { int i1,i2; } But if I do that I'm not able to use Contains function to check if given pair is ...
3
votes
2answers
155 views

.NET: Non-generic for KeyValuePair<string, string>?

I could've sworn that before System.Collections.Generic, there was a class that was effectively KeyValuePair<string, string>. In other words, it was an object with one two members: a name or key, ...
3
votes
3answers
131 views

What is an efficient algorithm for extracting bags from lists of pairs?

I have a list of pairs of objects. Objects can appear in the pair in either order. What is the most efficient algorithm (and implementation?) to find all bags (ie sets with duplicates permitted) of ...
3
votes
2answers
104 views

Will this memory be freed properly?

I have a pair pointer let us suppose std::pair< A*, B* >* pointerpair. I allocated it memory and after using the pair i call delete pointerpair. Will it also call delete A and delete B and will ...
3
votes
5answers
257 views

struct with 2 cells vs std::pair? [closed]

Possible Duplicate: What is the difference between using a struct with two fields and a pair? Dear all, I have a little question about pairs and struct. Is there any advantage to use a ...
3
votes
6answers
232 views

python:[[1,2],[3,4],[5,6],[7,8]] transform into [[1],[2,3],[4,5],[6,7],[8]] and vice versa

my current solution-pointers would be ether via a iterator class which yields the new assembled inner lists or via a iter function which yields the new assembled inner lists is there another, ...
2
votes
4answers
65 views

C++, templatize T in std::pair <T, short>

I would like to templatize "first" type of std::pair using the following construction template <typename T> struct TPair { typedef std::pair <T, short> Type; }; and create a vector of ...
2
votes
1answer
49 views

mysql optimization: select a non previously selected random pair of different values from a column of unique values

What would be the most efficient way to select a non previously selected pair of different random values from a column of unique (non repeated) values? My current approach is (keeping every pair of ...
2
votes
2answers
84 views

python all possible pairs of 2 list elements, and getting the index of that pair

let's say I have two lists: a = list(1,2,3) b = list(4,5,6) So I can have 9 pairs of these list members: (1,4) (1,5) (1,6) (2,4) (2,5) (2,6) (3,4) (3,5) (3,6) Now, given two list members like ...
2
votes
3answers
161 views

Generate all subsets of size k (containing k elements) in Python

I have a set of values and would like to create list of all subsets containing 2 elements. For example, a source set ([1,2,3]) has these 2-element subsets: set([1,2]), set([1,3]), set([2,3]). Is ...
2
votes
1answer
200 views

Storing noncopyable (but movable) object in std::pair

I am trying to store a noncopyable (but movable) object inside an std::pair, as follows: #include <utility> struct S { S(); private: S(const S&); S& operator=(const ...
2
votes
4answers
77 views

Retrieve all value pairs from List<Integer>

For example I have a List<Integer> object with the following: 3, 6, 5, 3, 3, 6 The result would be 3 and 6. How can I create a function that tests for duplicates and then returns 1 value of ...
2
votes
3answers
141 views

How to return a pair reference to data in a custom container?

#include <cstdint> #include <utility> class SimpleMap { public: typedef std::pair<const uint32_t, const uint32_t> value_type; static const int SIZE = 8; uint64_t data_[SIZE]; ...
2
votes
1answer
140 views

android licensing: when generate new key pair

I am reading Android Application Licensing. It uses a key pair to check license. The document also says that "Note that if you decide to generate a new licensing key pair for your account for some ...
2
votes
2answers
215 views

Efficient way to make two pairs in python

I would like to make two pairs from pairs. A pair consists of two elements, and a two-pair consists of two pairs. Here is the list of constraints: In a pair, order of elements is important: ...
2
votes
2answers
131 views

Optimization of SQL query regarding pair comparisons

I'm working on a pair comparison site where a user loads a list of films and grades from another site. My site then picks two random movies and matches them against each other, the user selects the ...
2
votes
3answers
386 views

Java: How to write a `zip` function? What should be the return type?

What should be the return type of a zip function? (zip as in most other languages, e.g. read here) I thought about some Pair-type but that does not exist in Java. It is often states that this is ...
2
votes
2answers
132 views

Is it possible to “constify” a field of `std::pair` without hacks?

In C++, the compiling the following code: std::pair <int, int> x; static_cast <std::pair <const int, int>*> (&x); gives an error: error: invalid static_cast from type ...
2
votes
4answers
2k views

Equivalent of C++ STL container “pair<T1, T2>” in Objective-C?

I'm new to Objective-C, so please don't judge me too much. I was wondering: Is there an equivalent of the C++ STL pair container I can use in Objective-C? I want to build an array that contains an ...
2
votes
3answers
377 views

converting a variable name to a string in C++

I'd like to output some data to a file. For example assume I have two vectors of doubles: vector<double> data1(10); vector<double> data2(10); is there an easy way to output this to a ...
2
votes
2answers
924 views

How do I create a set with std::pair thats sorted based on the ::second pair member using bind

I know I could use the following: template <typename Pair> struct ComparePairThroughSecond : public std::unary_function<Pair, bool> { bool operator ()(const Pair& p1, const ...
2
votes
2answers
164 views

regex to check string is certain length

I am trying to write a regex to match pairs of cards (AA, KK, QQ ... 22) and I have the regex ([AKQJT2-9])\1. The problem I have is that this regex will match AA as well as AAbc etc. Is there a way to ...
2
votes
2answers
198 views

Generating Random Paired Images in C#

im trying create cards matching game. normally these type of games they match paired cards together (with the same file name "A.jpg with A.jpg") but in my case, im matching cards with different names ...
2
votes
3answers
871 views

c++ std::pair, std::vector & memcopy

is it safe to memcopy myvect.size()*sizeof(foo) bytes from the memoryadress of the first element of a std::vector<std::pair<T1, T2> > myvect into an array of struct foo{ T1 first; ...
2
votes
4answers
821 views

Is it possible to use a custom class in place of std::pair in an STL map?

Is this possible? #include <map> class Example { private: std::map<std::string, std::string, less<std::string>, std::allocator< CustomPair<std::string, std::string> ...
1
vote
1answer
76 views

Is there a standard make new pair?

I want a pair<A,B>*. make_pair(a,b) will give me a pair<A,B> (note the pair isn't a pointer). Is there a standard way to make a pair pointer? I tried adding new before after and in between ...
1
vote
3answers
68 views

passing on KeyValuePair list from backgroundWorker1 to backgroundWorker2

I have a little problem, I'm using var filelist = new List<KeyValuePair<string, string>>(); filelist.Add(new KeyValuePair<string, string>(a, b)); filelist.Add(new ...
1
vote
0answers
38 views

Calculating efficiency of byte pair encoding

How do you calculate the efficiency of the byte pair encoding algorithm? It seems to me that I cannot do the same as with Huffman for example using entropy calculations. Any answers are much ...
1
vote
2answers
73 views

Python - Sorting a List into Pairs

This is a homework. I'm not looking for answers, just a nudge into the right direction. Given a list: ['The Boy','1:34','Let go','4:21','Wherever to', '5:30'] I want to be able to sort the list by ...
1
vote
3answers
55 views

Do I have to make a new pipe for every pair of processes in C?

If I have 4 processes that I want to pipe: process1 | process2 | process3 | process4 do I have to make 3 individual pipes likes this int pipe1[2]; int pipe2[2]; int pipe3[2]; or can I ...

1 2 3