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?
|
feedback
|
|
There are several ways to do this. @thanosQR is right in pointing to SWI-Prolog's
A list contains no duplicates if its number of elements is equal to the number of elements in the You can also use the (I believe non-standard, but commonly available)
This takes O(n lg n) time to run. | |||
|
feedback
|
|
First, define a predicate to make sure a value isn't in a list:
Then, our nodups predicate makes sure each element doesn't appear in the part of the list that comes after it:
| |||||||
feedback
|
|
| |||
|
feedback
|
|
alternatively, some forall madness (quadratic complexity so it's worse than the
| |||
|
feedback
|