I need something like this, a collection of elements which contains no duplicates of any element. Does Common Lisp, specifically SBCL, have any thing like this?
|
|
Personally, I would just implement a function which takes a list and return a unique set. I've drafted something together which works for me:
Basically, the My data source for all of this (not the function, but the info) has been a combination of the Common Lisp HyperSpec and Common Lisp the Language (2nd Edition). |
||
|
|
|
|
Easily solvable using a hash table.
outputs
|
||
|
|
|
|
Yes, it has sets. See this section on "Sets" from Practical Common Lisp. Basically, you can create a set with |
||
|
|
|
Look at cl-containers. There is a set-container class. |
||
|
|
|
|
You could use lists, though they can prove to be inefficient for representing large sets. This is done using ADJOIN or PUSHNEW to add a new element to a list, and DELETE or REMOVE to do the opposite.
One thing to watch out for is all that these operators use EQL by default to test for potential duplicates in the set (much as Java uses the equals method). That's OK for sets holding numbers or characters, but for sets of other objects, a `deeper' equality test such as EQUAL should be specified as a :TEST keyword parameter, e.g. for a set of strings :-
Lisp's counterparts to some of Java's Set operations are:
|
||
|
|
|
|
For a quick solution, just use hash tables, as has been mentioned before. However, if you prefer a more principled approach, you can take a look at FSet, which is “a functional set-theoretic collections library”. Among others, it contains classes and operations for sets and bags. (EDIT:) The cleanest way would probably be to define your set-oriented operations as generic functions. A set of generic functions is basically equivalent to a Java interface, after all. You can simply implement methods on the standard HASH-TABLE class as a first prototype and allow other implementations as well. |
|||
|
|
|
|
Lisp hashtables are CLOS based. Specs here. |
||||||
|
|
|
Not that I'm aware of, but you can use hash tables for something quite similar. |
||
|
|
