Please help me to solve this problem: I have a list of lists

[[1,2],[3,4]]

How do I get:

[1,3]

[1,4]

[2,3]

[2,4]

Or if I have a list of lists

[[1,2],[3,4],[6,7]]

How do I get:

[1,3,6]

[1,3,7]

[1,4,6]

[1,4,7]

[2,3,6]

[2,3,7]

[2,4,6]

[2,4,7]

Thanks

link|improve this question
1  
i believe this is called the cartesian product – DaveEdelstein Jan 26 at 14:30
feedback

2 Answers

up vote 3 down vote accepted

the predicate for accessing a single list element it's the most basic Prolog building block: member/2. And you want a list of all lists' elements: maplist/3 does such mapping. Thus we can write

combine(Ls, Rs) :-
    maplist(get1, Ls, Rs).
get1(L, E) :-
    member(E, L).

note that get1/2 it's only required to swap the member/2 arguments: because in (pure) Prolog we are describing relations between arguments, we can swap arguments' order and simplify even more:

combine(Ls, Rs) :-
    maplist(member, Rs, Ls).

Test output:

?- combine([[1,2],[a,b]],X).
X = [1, a] ;
X = [1, b] ;
X = [2, a] ;
X = [2, b].
link|improve this answer
great use of member & maplist! very impressive! – DaveEdelstein Jan 26 at 15:08
feedback

You can do something like this:

lists([], []).
lists([[Head|_]|Lists], [Head|L]):-
  lists(Lists, L).
lists([[_,Head|Tail]|Lists], L):-
  lists([[Head|Tail]|Lists], L).

That is, take the first element of the first list in your input list and continue recursively with the remaining lists. As a second chance, skip that element and redo with the remaining elements.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.