In Prolog how do you write a procedure that can be used to test whether or not a list represents a set with no duplicates?

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

There are several ways to do this. @thanosQR is right in pointing to SWI-Prolog's is_set/1, but if you want a portable solution, you can define that predicate in terms of setof:

is_set(Lst) :-
    setof(X, member(X, Lst), Set),
    length(Lst, N),
    length(Set, N).

A list contains no duplicates if its number of elements is equal to the number of elements in the setof its elements.

You can also use the (I believe non-standard, but commonly available) sort/2, which eliminates duplicates:

is_set(Lst) :-
    sort(Lst, Set),
    length(Lst, N),
    length(Set, N).

This takes O(n lg n) time to run.

link|improve this answer
feedback

First, define a predicate to make sure a value isn't in a list:

notin(A,[]).
notin(A,[B|C]) :- A\=B, notin(A,C).

Then, our nodups predicate makes sure each element doesn't appear in the part of the list that comes after it:

nodups([]).
nodups([_]).
nodups([A|B]) :- notin(A,B), nodups(B).
link|improve this answer
This requires O(n²) time to run. See my answer for an O(n lg n) solution. (Besides, notin(X,Lst) can be replaced with \+ memberchk(X,Lst).) – larsmans Jan 25 at 17:41
@larsmans why memberchk/2 instead of member/2 in a (\+)/1 call ? It'll stop at the first match anyway, won't it ? – Mog Jan 25 at 17:50
@Mog: I believe memberchk is still more efficient; SWI-Prolog's time/1 shows it performs fewer inferences. – larsmans Jan 25 at 18:19
feedback

is_set/1: http://www.swi-prolog.org/pldoc/doc_for?object=is_set/1
(Assuming that you still want it for swi-prolog)

link|improve this answer
feedback

alternatively, some forall madness (quadratic complexity so it's worse than the is_set/1 mentionned above, but w/e) :

duplicates(List) :-
    forall(select(Item, List, Rest),
           forall(member(Item2, Rest),
                  Item \== Item2)).
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.