I've only been working with Prolog for a couple days. I understand some things but this is really confusing me.

I'm suppose to write a function that takes a list and flattens it.

i.e. - flatten([a, [b,c], [[d],[],[e]]]) -> [a,b,c,d,e]

The function takes out the inner structures of the list.

This is what I have so far:

flatten2([],[]).
flatten2([Atom|ListTail],[Atom|RetList]) :-
      atom(Atom), flatten2(ListTail,RetList).
flatten2([List|ListTail],RetList) :-
      flatten2(List,RetList).

Now, this works when I call flatten2([a, [b,c], [[d],[],[e]]], R).

I tells me that R = [a,b,c,d,e].

But when I call this function to see if a list that I input is already flattened, flatten2([a, [b,c], [[d],[],[e]]], [a,b,c,d,e])., it returns false.

Why does it work on one hand, but not the other? I feel like I'm missing something very simple.

Thanks.

link|improve this question
feedback

3 Answers

up vote 3 down vote accepted

The definition of flatten2/2 you've given is busted; it actually behaves like this:

?- flatten2([a, [b,c], [[d],[],[e]]], R).
R = [a, b, c] ;
false. 

So, given the case where you've already bound R to [a,b,c,d,e], the failure isn't surprising.

Your definition is throwing away the tail of lists (ListTail) in the 3rd clause - this needs to be tidied up and connected back into the list to return via RetList. Here is a suggestion:

flatten2([], []) :- !.
flatten2([L|Ls], FlatL) :-
    !,
    flatten2(L, NewL),
    flatten2(Ls, NewLs),
    append(NewL, NewLs, FlatL).
flatten2(L, [L]).

This one recursively reduces all lists of lists into either single item lists [x], or empty lists [] which it throws away. Then, it accumulates and appends them all into one list again out the output.

Note that, in most Prolog implementations, the empty list [] is an atom and a list, so the call to atom([]) and is_list([]) both evaluate to true; this won't help you throw away empty lists as opposed to character atoms.

link|improve this answer
You're right it was busted. I don't know why I was getting the right answer before. I understand how your approach works but how does it get rid of empty lists? Also, why is [] an atom? – ToastyMallows Jan 30 at 6:31
@ToastyMallows it gets rid of []s because appending a list and an [] gets you your same list back. [] is both atom and list for historical reasons. Look up "cons" and "nil". [] is what's known in LISP as "nil". – Will Ness Jan 30 at 18:24
feedback

You can maintain your lists open-ended, with both a pointer to its start, and an ending "hole/free pointer" (i.e. logvar) which you then can get to instantiate when the end is reached:

flatten2_aux([],Z,Z):- !.
flatten2_aux([[]|ListTail],X,Z) :-
      !, flatten2_aux(ListTail,X,Z).
flatten2_aux([Atom|ListTail],[Atom|X],Z) :-
      atom(Atom), !, flatten2_aux(ListTail,X,Z).
flatten2_aux([List|ListTail],X,Z) :-
      flatten2_aux(List,X,Y),flatten2_aux(ListTail,Y,Z).

You then call it as

flatten2(A,B):- flatten2_aux(A,B,[]).

That way there's no need for using reverse anywhere. This technique is known as "difference lists", but it's much easier just to think about it as "open-ended lists" instead.

link|improve this answer
feedback

Prolog's list notation is syntactic sugar on top of very simple prolog terms. Prolog lists are denoted thus:

  1. The empty list is represented by the atom []. Why? Because that looks like the mathematical notation for an empty list. They could have used an atom like nil to denote the empty list but they didn't.

  2. A non-empty list is represented by the term .\2, where the first (leftmost) argument is the head of the list and the second (rightmost) argument is the tail of the list, which is, recursively, itself a list.

Some examples:

  • An empty list: [] is represented as the atom it is:

    []
    
  • A list of one element, [a] is internally stored as

    .(a,[])
    
  • A list of two elements [a,b] is internally stored as

    .(a,.(b,[]))
    
  • A list of three elements, [a,b,c] is internally stored as

    .(a,.(b,.(c,[])))

Examination of the head of the list is likewise syntactic sugar over the same notation:

  • [X|Xs] is identical to .(X,Xs)

  • [A,B|Xs] is identical to .(A,.(B,Xs))

  • [A,B] is (see above) identical to .(A,.(B,[]))

Myself, I'd write flatten/2 like this:

%------------------------
% public : flatten a list
%------------------------
flatten( X , R ) :-
  flatten( X , [] , T ) ,
  reverse( T , R )
  .

%--------------------------------------------
% private : flatten a list into reverse order
%--------------------------------------------
flatten( [] , R , R ) .        % the empty list signals the end of recursion
flatten( [X|Xs] , T , R ) :-   % anything else is flattened by
  flatten_head( X , T , T1 ) , % - flattening the head, and
  flatten( Xs , T1 , R )       % - flattening the tail
  .                            %

%-------------------------------------
% private : flatten the head of a list
%-------------------------------------
flatten_head( X , T , [X|T] ) :- % if the head is a not a list
  \+ list(X) ,                   % - simply prepend it to the accumulator.
  ! .                            %
flatten_head( X , T , R     ) :- % if the head is a list
  flatten( X , T , R )           % - recurse down and flatten it.
  .

%-----------------------
% what's a list, anyway?
%-----------------------
list( X ) :- var(X) , ! , fail .
list( []    ) .
list( [_|_] ) .
link|improve this answer
I tried flatten([a,[b,c],[],[[[d]]]],X) call with your code and it didn't work. The atom-handling case seems missing in your version. – Will Ness Jan 31 at 20:17
Amended. Sorry 'bout that. – Nicholas Carey Jan 31 at 23:48
but now it produces X = [a, [c, b], [[[d]]]]. – Will Ness Feb 1 at 9:47
@WillNess: Happy? – Nicholas Carey Feb 1 at 19:21
feedback

Your Answer

 
or
required, but never shown

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