I am in front of quite a challenge here, and hope that you can provide a little help.
I have tried and searched a lot, but without success.
Here is the problem:
Two lists
List1 : [a1; a2; ...; an]
List2 : [b1; b2; ...; bn]
What is the function that returns a list of ALL the interleaves possible of the two lists RESPECTING the order within each list.
For example :
myFunction [1; 2] ['a'; 'b'; 'c'] = [
[1; 2; 'a'; 'b'; 'c'];
[1; 'a'; 2; 'b'; 'c'];
[1; 'a'; 'b'; 2; 'c'];
[1; 'a'; 'b'; 'c'; 2];
['a'; 1; 2; 'b'; 'c'];
['a'; 1; 'b'; 2; 'c'];
['a'; 1; 'b'; 'c'; 2];
['a'; 'b'; 1; 2; 'c'];
['a'; 'b'; 1; 'c'; 2];
['a'; 'b'; 'c'; 1; 2]
]
For those who have noticed, it is basically thinking about 2 concurrent programs, and ALL the executions possible when the 2 programs are launched (1 is always before 2, a is always before b and before c, otherwise, all interleaves are possible)
I hope that I was clear, and that you can help me.
Thank you a lot.
myFunction [1] [1]? Also an observation: your example is invalid OCaml-- you can't have a list of mixed characters and ints. (But the idea is clear.) – Jeffrey Scofield Sep 27 '12 at 18:54