Tagged Questions

8
votes
5answers
4k views

Cartesian product of arbitrary sets in Java

Do you know some neat Java libaries that allow you to make cartesian product of two (or more) sets? For example: I have tree sets. One with objects of class Person, second with objects of class Gift ...
2
votes
4answers
337 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
5answers
575 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
1answer
90 views

How do I generate a Cartesian product in Java?

I have a number of ArrayList with each ArrayList having objects and each one can have different length. I need to generate permutation like in the below example: suppose i have 2 arraylist ...
0
votes
0answers
49 views

Cartesian Product iteration with constraints and in depth-first order

One element of the (sub)mod I am writing for Minecraft has some rather... interesting requirements. I have tried to meet them but I keep getting stumped. Here is the basic idea. I have a function that ...
0
votes
2answers
176 views

Finding cartesian product in Java

I want to find cartesian product of set of elements. Here's an example example 1 : sets :(ab) (bc) (ca) cartesian product is, abc aba acc aca bbc bba bcc bca example 2 : sets : (zyx) b c ...