mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-25 07:28:20 +00:00
(Hash Tables): Note that alists win for small tables.
This commit is contained in:
parent
db0e466c89
commit
1107d4ca49
@ -13,9 +13,11 @@ from an alist in these ways:
|
||||
|
||||
@itemize @bullet
|
||||
@item
|
||||
Lookup in a hash table is extremely fast---in fact, the time required
|
||||
is essentially @emph{independent} of how many elements are stored
|
||||
in the table.
|
||||
Lookup in a hash table is extremely fast for large tables---in fact, the
|
||||
time required is essentially @emph{independent} of how many elements are
|
||||
stored in the table. For smaller tables (a few tens of elements)
|
||||
alists may still be faster because hash tables have a more-or-less
|
||||
constant overhead.
|
||||
|
||||
@item
|
||||
The correspondences in a hash table are in no particular order.
|
||||
|
Loading…
Reference in New Issue
Block a user