Tagged Questions

2
votes
1answer
30 views

Generate all possible dna sequences from a few given sets

Hi, I have been trying to wrap my head around this for a while now but have not been able to come up with a good solution. Here goes: Given a number of sets: set1: A, T set2: C …
3
votes
5answers
163 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 …
0
votes
2answers
78 views

duplicates in a join

the following SQL is returning every BT.Bt_Name where L.date_back is Null. I only wish to select the BT.Bt_Names where L.Bc_id is duplicated SELECT BT.Bt_Name FROM Book_Title BT I …
1
vote
4answers
925 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 "dialect …
2
votes
5answers
298 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-d …
1
vote
6answers
314 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: [ ] …
1
vote
2answers
324 views

SQL cartesian join problem

I have three tables A: A.pID primary key, A.Name nvarchar(250) B: B.pID primary key, B.Name nvarchar(250) C: C.pID primary key, C.Name nvarchar(250) There is a m to n relati …
2
votes
2answers
268 views

Mixing implicit and explicit JOINs

I am having a problem with Hibernate generating invalid SQL. Specifically, mixing and matching implicit and explicit joins. This seems to be an open bug. However, I'm not sure why …
0
votes
1answer
82 views

MySQL Multitable Query Problem

I have a problem querying multiple tables in MySQL and am currently at my wits end. I have unique IDs in each table, and am using an INNER JOIN to combine them; I am quite new to …
3
votes
5answers
580 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 o …