Can you have hash tables or dicts in Lisp? I mean the data structure that is a collection of pairs (key, value) where values can be acceded using keys.
|
If you're referring to Common Lisp, hash tables are provided by a type called Using these tables involves creating one with function The mapping from key value to hash code is available outside of hash tables with the function |
||||
|
|
|
Common Lisp has at least four different ways to do that (key value storage):
For simple usage assoc lists or property lists are fine. With a larger number of elements they tend to get 'slow'. Hash tables are 'faster' but have their own tradeoffs. CLOS objects are used like in many other object systems. The keys are the slot-names defined in a CLOS class. Though it is possible to program variants that can add and remove slots on access. |
||||
|
|
|
Of course - Common Lisp has hash tables.
Property lists are good for very small examples of demonstrative purpose, but for any real need their performance is abysmal, so use hash tables. |
|||
|
|
|
Clojure has a built-in map type:
|
|||
|
|
|
Sure. Here's the SRFI defining the standard hash table libraries in Scheme: |
|||
|
|
|
There's built-in hash tables, that use a system hash function (typically SXHASH) and where you can have a couple of different equality checkers (EQ, EQL, EQUAL or EQUALP depending on what you consider to be "the same" key). If the built-in hash tables are not good enough, there's also a generic hash table library. It will accept any pair of "hash generator"/"key comparator" and build you a hash table. However, it relies on having a good hash function to work well and that is not necessarily trivial to write. |
|||
|
|
|
In Lisp it's usually called a property list. |
|||||||||
|
