Tagged Questions

7
votes
2answers
318 views

Efficient item binning algorithm (itertools/numpy)

I think this is a common combinatorics problem, but I can't seem to find a name for it or any material about it. I am doing this in Python and numpy, but if there is a fast matrix method for this, I ...
7
votes
5answers
2k views

Efficient Cartesian Product algorithm

Can somebody please demonstrate for me a more efficient Cartesian product algorithm than the one I am using currently (assuming there is one). I've looked around SO and googled a bit but can't see ...
6
votes
4answers
390 views

Finding cartesian product with PHP associative arrays

Say that I have an array like the following: Array ( [arm] => Array ( [0] => A [1] => B [2] => C ) [gender] => Array ...
6
votes
2answers
534 views

Concurrent cartesian product algorithm in Clojure

Is there a good algorithm to calculate the cartesian product of three seqs concurrently in Clojure? I'm working on a small hobby project in Clojure, mainly as a means to learn the language, and its ...
3
votes
1answer
130 views

Recreate sets from combinations of these sets

I came across a specific problem and looking for some algorithm for it. The problem to solve is as described below. Let's say we have combinations like below 1 - 3 - 5 1 - 4 - 5 1 - 8 - 5 2 - 4 ...
3
votes
4answers
372 views

How can I compute a Cartesian product iteratively?

This question asks how to compute the Cartesian product of a given number of vectors. Since the number of vectors is known in advance and rather small, the solution is easily obtained with nested for ...
3
votes
7answers
963 views

In Perl, how can I iterate over the Cartesian product of multiple sets?

Given x number of arrays, each with a possibly different number of elements, how can I iterate through all combinations where I select one item from each array? Example: [ ] [ ] [ ] foo ...
2
votes
4answers
333 views

How to do Combinatorics on the Fly

I have a very weird problem which has some constrains that make it difficult to solve. I have a list of lists and I want to do the combinations of all items in those lists. Each item has a name and a ...
2
votes
2answers
241 views

efficient sorted Cartesian product of 2 sorted array of integers

Need Hints to design an efficient algorithm that takes the following input and spits out the following output. Input: two sorted arrays of integers A and B, each of length n Output: One sorted array ...
2
votes
3answers
408 views

Algorithm to produce Cartesian product of arrays in depth-first order

I'm looking for an example of how, in Ruby, a C like language, or pseudo code, to create the Cartesian product of a variable number of arrays of integers, each of differing length, and step through ...
2
votes
5answers
572 views

Split String - the Cartesian way

Given the following string: "foo bar-baz-zzz" I want to split it at the characters " " and "-", preserving their value, but get all combinations of inputs. i want to get a two-dimensional array ...
1
vote
3answers
49 views

Creating Combinations in JavaScript

Lets say I have several sets of options in Javascript var color = ["red", "blue", "green","yellow"]; var size = ["small", "medium", "large"]; var weight = ["heavy", "light"]; what is an ...
1
vote
6answers
2k views

What's a good, non-recursive algorithm to calculate a Cartesian product?

Note This is not a REBOL-specific question. You can answer it in any language. Background The REBOL language supports the creation of domain-specific languages known as "dialects" in REBOL ...
0
votes
3answers
79 views

Conversion of a delta pair to degree's [closed]

Undoubtedly this question has been asked before, except I completely lack the knowledge to find it. I'm trying to write the classic snake (aka Nibbles) game and the logic is pretty straight forward. ...
0
votes
1answer
106 views

Cartesian Product written with Powershell

I've become very stuck trying to complete a Cartesian Product algorithm in Powershell. Using pieces of other formulas found here on stackoverflow this is what I have come up with: clear Function ...