Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
5answers
3k views

In Haskell, how can I use the built in sortBy function to sort a list of pairs(tuple)?

I am a beginner in Haskell so please bear with me. (Just started learning yesterday!) How can I sort a list of tuples primarily by their first components (highest to smallest) and secondarily by their ...
4
votes
3answers
233 views

Get all pairs in a list using LINQ

How do I get all possible pairs of items in a list (order not relevant)? E.g. if I have var list = { 1, 2, 3, 4 }; I would like to get these tuples: var pairs = { new Tuple(1, 2), new Tuple(1, ...
4
votes
2answers
100 views

Algorithm to find the global minimal distance between item pairs

The items a-d is to be paired with items 0-3 in such a way that the total distance between all item pairs are minimized. For example, this matrix could describe the distance between each item in the ...
4
votes
1answer
648 views

Are there any methods included in Scala to convert tuples to lists?

I have a Tuple2 of List[List[String]] and I'd like to be able to convert the tuple to a list so that I can then use List.transpose(). Is there any way to do this? Also, I know it's a Pair, though I'm ...
3
votes
1answer
72 views

Lua: 'pairs' doesn't iterate over [1]

I quickly had to debug something, and wrote following function: function dumpTable(t) for i,v in pairs(t) do if type(v) == "table" then dumpTable(v) else ...
3
votes
3answers
91 views

Need C# Regex to get pairs of words in a sentence

Is there a regex that would take the following sentence: "I want this split up into pairs" and generate the following list: "I want", "want this", "this split", "split up", "up into", "into pairs"
3
votes
7answers
530 views

.NET - Efficient sorting of pairs<key, value> by value

So, I'm looking for the most efficient way to sort a bunch of pairs<string, float> by value, because I need to get the 3 highest entries of a high number of pairs. My natural reaction was to ...
2
votes
2answers
63 views

How to iterate over pairs of elements in table in lua

How to iterate over pairs of table elements in lua? I would like to achive a side-effect free way of circular and non-circular iterating ver pairs. I have table like this: t = {1,2,3,4} Desired ...
2
votes
2answers
83 views

How to sum columns in pairs of a matrix in Matlab?

For example, if A=[ 0 1 2 3 4 5 6 7 8 9; 0 1 2 3 4 5 6 7 8 9; 0 1 2 3 4 5 6 7 8 9] A = 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 ...
2
votes
3answers
149 views

pairs() plot by class variable

I am wondering if it is possible to use pair plot (or such function ggplot) to plot pairs of a class variable, e.g. #make some example data ...
2
votes
4answers
123 views

Is there python way to generate pairs?

I want something like code below, but "pythonic" style or using standard library: def combinations(a,b): for i in a: for j in b: yield(i,j)
2
votes
4answers
435 views

How does make_pair know the types of its args?

The definition for make_pair in the MSVC++ "utility" header is: template<class _Ty1, class _Ty2> inline pair<_Ty1, _Ty2> make_pair(_Ty1 _Val1, _Ty2 _Val2) { // return pair composed ...
2
votes
3answers
496 views

How do I select every pair of 2 sequential elements in jquery?

Can anyone please help me to work out how to achieve the following? I have a set of divs of unknown size. Each div has a class of .feature. I need to run a jQuery script to find all divs with .feature ...
2
votes
2answers
416 views

Match the pairs search algorithm?

I found an interesting pairs matching game at http://xepthu.uhm.vn. The rule is simple, you have to find and connect two identical pokemon but the path between them is not blocked and the direction ...
1
vote
3answers
41 views

how to generate an output satisfied with specific conditions from expand.grid in R

I am running expand.grid function. For a simple example, a <- c(1,2,3,"X","Y","M") b is identical as b. if i take expand.grid(a,b), it returns all pairs including diagonal elements -- ...
1
vote
1answer
127 views

How to find all possible pairs from three subsets of a set with constraints in Erlang?

I have a set M which consists of three subsets A,B and C. Problem: I would like to calculate all possible subsets S(1)...S(N) of M which contain all possible pairs between elements of A, B and C in ...
1
vote
2answers
73 views

jQuery: wrap accordion pairs with outer container

i have the following problem with the accordion. I have pairs of elements with an outer container "accordion" but i need to wrap each pair with another container. As I understood i can´t wrap them ...
1
vote
0answers
11 views

Key Value Pairs sending to Database for Submit Action

I have a Grid Which contains Access Details of a Users which is of multiple rows -User Can take Retain Action \Delete Action against Each Record -On click of Submit we need to send this AccessID and ...
1
vote
2answers
106 views

JavaScript: replace a set of characters with another one

I have a multidimentional array composed of latin and Berber strings that I want to use as a reference to replace input data: var alphabet = Array ( Array( 'a', 'ⴰ' ), Array( 'b', 'ⴱ' ), Array( 'g', ...
1
vote
2answers
208 views

How to store key-value pairs in a file that will be stored in internal memory in Android?

I have some information that needs to be stored in internal memory. I will like to store in the form of key-value pairs the way its done in SharedPreferences. I was thinking of creating JsonObject and ...
1
vote
1answer
129 views

Need pairing algorithm - based on Hungarian?

Hungarian or Kuhn-Munkres algorithm (good description here) pairs objects from two sets (of n and m objects respectively, n>=m) so that the overall "difference" (or "cost" of assignment) between ...
1
vote
2answers
158 views

list is a subset of another list

in Python, given two lists of pairs: listA = [ [1,20], [3,19], [37,11], [21,17] ] listB = [ [1,20], [21,17] ] how do you efficiently write a python function which return True if listB is a subset ...
1
vote
2answers
180 views

idiom for getting unique pairs of collection elements in Java

Is there a standard idiom for getting a set of each unique pair of elements in a given Collection? For our purposes, the set of (a,b) is equivalent to (b,a), and thus only one should appear in the ...
1
vote
4answers
1k views

Need bash shell script for reading name value pairs from a file

I have a file like name1=value1 name2=value2 I need to read this file using shell script and set variables $name1=value1 $name2=value2 Please provide the script that can do this. I tried the ...
1
vote
1answer
89 views

How can I compress a table after having removed a value from it?

I have a table which contains 4 values. For example: 2 4 1 3 I use a function to step through the table looking for, lets say the number 1 by using pairs and to get the position of it in the table. ...
1
vote
1answer
213 views

Multimap containing pairs?

Is it possible for a multimap to contain within it pairs? IE, rather then being defined as multimap<char,int> for instance, it would be defined as multimap<pair, pair>? How would this ...
1
vote
2answers
486 views

Getting all combinations of pairs from a list in Ruby

I have a list of elements (e.g. numbers) and I want to retrieve a list of all possible pairs. How can I do that using Ruby? Example: l1 = [1,2,3,4,5] -> l2 = ...
1
vote
3answers
1k views

What is the C interface to Lua for accessing a table's key/value pairs?

In Lua, using the C interface, given a table, how do I iterate through the table's key/value pairs? Also, if some table table members are added using arrays, do I need a separate loop to iterate ...
1
vote
3answers
559 views

Generating random couples in C#

I have a table in my DB with a list of people. I need to create a list of random buddies every day. The idea is that every day every person is paired with a differenct random person for that day. ...
0
votes
3answers
63 views

Join two ordered collections with LINQ

I've got two data types, Foo and Bar, that have a property to determine order: class Foo { public int Order { get; set; } public string FooValue { get; set; } } class Bar { public int ...
0
votes
0answers
72 views

Using pairs in Java for database names and values

I am trying to create a generic database function to populate default values into a table on creation if need be. I have a class which will create pairs, thanks to this post but don't quite understand ...
0
votes
1answer
260 views

Superimpose pairs plot based on condition

*Edit:*I am sorry, but the situation could be a little bit more complex than I have shown. However, both of your scripts work, althouth the first might be not so clear for large dataset due to point ...
0
votes
1answer
467 views

Plotting scatterplots with pairs in R, in log scale with data containing zeros

I am trying to plot some pairs of scatterplots using "pairs". My dataframe look like : >e X Y Z 0 0 0 2 3 4 0 3 4 3 3 3 A completely standard dataframe here. I use this ...
0
votes
3answers
102 views

creating matches wih 3 arrays

well I have kinda of an issue with an application that Im developing for a car pooling program in my company ( the process is kinda complex). Well anyways, what I wanna do is the follwoing: I have 3 ...
0
votes
1answer
123 views

SELECT sales by user pairs

I have a Session table UserId SessionId 1 a 2 a 1 b 4 b 2 c 3 c And another sales table where the sales are tied to a ...
0
votes
3answers
984 views

(Java) Find all possible pairs in an array

Its when I try to do stuff like this I realise I really need to go to university! Anyway I have an array of strings (275) I need to loop through them and create strings of all the possible pairs, in ...
0
votes
1answer
448 views

Looking for “Domino combination” algorithm

I'm going to complete my apprenticeship as coder and i got a nice j2me project to work on. But i have to admit that i'm not that good with mathematical algorithms as i'd like to be. My problem is to ...
0
votes
6answers
825 views

Iterating over pair elements in a container of pairs (C++)

If I have a container (vector, list, etc) where each element is a std::pair, is there an easy way to iterate over each element of each pair? i.e. std::vector<std::pair<int,int> > a; ...
0
votes
2answers
166 views

Display pairs in Random order

How can I randomised the order of pairs? e.g. I have 3 elements stored in list e.g. A,B,C --> which makes pairs of A-B, A-C, B-C. How can I display the pair in Random order? e.g. A-B, A-C, B-C or ...