Hash table explained
Hash table |
Type: | Unordered associative array |
Invented Year: | 1953 |
Space Avg: | Θ(n)[1] |
Space Worst: | O(n) |
Search Avg: | Θ(1) |
Search Worst: | O(n) |
Insert Avg: | Θ(1) |
Insert Worst: | O(n) |
Delete Avg: | Θ(1) |
Delete Worst: | O(n) |
In computing, a hash table is a data structure often used to implement the map (a.k.a. dictionary or associative array) abstract data type. A hash table uses a hash function to compute an index, also called a hash code, into an array of buckets or slots, from which the desired value can be found. During lookup, the key is hashed and the resulting hash indicates where the corresponding value is stored.
Most hash table designs employ an imperfect hash function. Hash collisions, where the hash function generates the same index for more than one key, therefore typically must be accommodated in some way.
In a well-dimensioned hash table, the average time complexity for each lookup is independent of the number of elements stored in the table. Many hash table designs also allow arbitrary insertions and deletions of key–value pairs, at amortized constant average cost per operation.[2] [3] [4]
Hashing is an example of a space-time tradeoff. If memory is infinite, the entire key can be used directly as an index to locate its value with a single memory access. On the other hand, if infinite time is available, values can be stored without regard for their keys, and a binary search or linear search can be used to retrieve the element.
In many situations, hash tables turn out to be on average more efficient than search trees or any other table lookup structure. For this reason, they are widely used in many kinds of computer software, particularly for associative arrays, database indexing, caches, and sets.
History
The idea of hashing arose independently in different places. In January 1953, Hans Peter Luhn wrote an internal IBM memorandum that used hashing with chaining. The first example of open addressing was proposed by A. D. Linh, building on Luhn's memorandum.[3] Around the same time, Gene Amdahl, Elaine M. McGraw, Nathaniel Rochester, and Arthur Samuel of IBM Research implemented hashing for the IBM 701 assembler. Open addressing with linear probing is credited to Amdahl, although Andrey Ershov independently had the same idea.[5] The term "open addressing" was coined by W. Wesley Peterson on his article which discusses the problem of search in large files.[6]
The first published work on hashing with chaining is credited to Arnold Dumey, who discussed the idea of using remainder modulo a prime as a hash function. The word "hashing" was first published in an article by Robert Morris. A theoretical analysis of linear probing was submitted originally by Konheim and Weiss.
Overview
An associative array stores a set of (key, value) pairs and allows insertion, deletion, and lookup (search), with the constraint of unique keys. In the hash table implementation of associative arrays, an array
of length
is partially filled with
elements, where
. A value
gets stored at an index location
, where
is a hash function, and
. Under reasonable assumptions, hash tables have better
time complexity bounds on search, delete, and insert operations in comparison to
self-balancing binary search trees.
Hash tables are also commonly used to implement sets, by omitting the stored value for each key and merely tracking whether the key is present.
Load factor
A load factor
is a critical statistic of a hash table, and is defined as follows:
where
is the number of entries occupied in the hash table.
is the number of buckets.
The performance of the hash table deteriorates in relation to the load factor
.
The software typically ensures that the load factor
remains below a certain constant,
. This helps maintain good performance. Therefore, a common approach is to resize or "rehash" the hash table whenever the load factor
reaches
. Similarly the table may also be resized if the load factor drops below
.
[7] Load factor for separate chaining
With separate chaining hash tables, each slot of the bucket array stores a pointer to a list or array of data.
Separate chaining hash tables suffer gradually declining performance as the load factor grows, and no fixed point beyond which resizing is absolutely needed.
With separate chaining, the value of
that gives best performance is typically between 1 and 3.
Load factor for open addressing
With open addressing, each slot of the bucket array holds exactly one item. Therefore an open-addressed hash table cannot have a load factor greater than 1.[8]
The performance of open addressing becomes very bad when the load factor approaches 1.
Therefore a hash table that uses open addressing must be resized or rehashed if the load factor
approaches 1.
With open addressing, acceptable figures of max load factor
should range around 0.6 to 0.75.
[9] Hash function
maps the universe
of keys to indices or slots within the table, that is,
for
. The conventional implementations of hash functions are based on the
integer universe assumption that all elements of the table stem from the universe
, where the
bit length of
is confined within the
word size of a
computer architecture.
A hash function
is said to be
perfect for a given set
if it is
injective on
, that is, if each element
maps to a different value in
.
[10] [11] A perfect hash function can be created if all the keys are known ahead of time.
Integer universe assumption
The schemes of hashing used in integer universe assumption include hashing by division, hashing by multiplication, universal hashing, dynamic perfect hashing, and static perfect hashing. However, hashing by division is the commonly used scheme.[12]
Hashing by division
The scheme in hashing by division is as follows:Where
is the hash digest of
and
is the size of the table.
Hashing by multiplication
The scheme in hashing by multiplication is as follows:Where
is a
real-valued constant and
is the size of the table. An advantage of the hashing by multiplication is that the
is not critical. Although any value
produces a hash function,
Donald Knuth suggests using the
golden ratio.
Choosing a hash function
Uniform distribution of the hash values is a fundamental requirement of a hash function. A non-uniform distribution increases the number of collisions and the cost of resolving them. Uniformity is sometimes difficult to ensure by design, but may be evaluated empirically using statistical tests, e.g., a Pearson's chi-squared test for discrete uniform distributions.[13] [14] The distribution needs to be uniform only for table sizes that occur in the application. In particular, if one uses dynamic resizing with exact doubling and halving of the table size, then the hash function needs to be uniform only when the size is a power of two. Here the index can be computed as some range of bits of the hash function. On the other hand, some hashing algorithms prefer to have the size be a prime number.[15]
For open addressing schemes, the hash function should also avoid clustering, the mapping of two or more keys to consecutive slots. Such clustering may cause the lookup cost to skyrocket, even if the load factor is low and collisions are infrequent. The popular multiplicative hash is claimed to have particularly poor clustering behavior.[3] K-independent hashing offers a way to prove a certain hash function does not have bad keysets for a given type of hashtable. A number of K-independence results are known for collision resolution schemes such as linear probing and cuckoo hashing. Since K-independence can prove a hash function works, one can then focus on finding the fastest possible such hash function.[16]
Collision resolution
See also: 2-choice hashing. A search algorithm that uses hashing consists of two parts. The first part is computing a hash function which transforms the search key into an array index. The ideal case is such that no two search keys hashes to the same array index. However, this is not always the case and is impossible to guarantee for unseen given data.[17] Hence the second part of the algorithm is collision resolution. The two common methods for collision resolution are separate chaining and open addressing.[18]
Separate chaining
In separate chaining, the process involves building a linked list with key–value pair for each search array index. The collided items are chained together through a single linked list, which can be traversed to access the item with a unique search key. Collision resolution through chaining with linked list is a common method of implementation of hash tables. Let
and
be the hash table and the node respectively, the operation involves as follows:
[19] Chained-Hash-Insert(
T,
k)
insert x at the head of linked list T[''h''(''k'')] Chained-Hash-Search(
T,
k)
search for an element with key k in linked list T[''h''(''k'')] Chained-Hash-Delete(
T,
k)
delete x from the linked list T[''h''(''k'')]
If the element is comparable either numerically or lexically, and inserted into the list by maintaining the total order, it results in faster termination of the unsuccessful searches.
Other data structures for separate chaining
If the keys are ordered, it could be efficient to use "self-organizing" concepts such as using a self-balancing binary search tree, through which the theoretical worst case could be brought down to
, although it introduces additional complexities.
In dynamic perfect hashing, two-level hash tables are used to reduce the look-up complexity to be a guaranteed
in the worst case. In this technique, the buckets of
entries are organized as
perfect hash tables with
slots providing constant worst-case lookup time, and low amortized time for insertion.
[20] A study shows array-based separate chaining to be 97% more performant when compared to the standard linked list method under heavy load.
Techniques such as using fusion tree for each buckets also result in constant time for all operations with high probability.[21]
Caching and locality of reference
The linked list of separate chaining implementation may not be cache-conscious due to spatial locality—locality of reference—when the nodes of the linked list are scattered across memory, thus the list traversal during insert and search may entail CPU cache inefficiencies.[22]
In cache-conscious variants of collision resolution through separate chaining, a dynamic array found to be more cache-friendly is used in the place where a linked list or self-balancing binary search trees is usually deployed, since the contiguous allocation pattern of the array could be exploited by hardware-cache prefetchers—such as translation lookaside buffer—resulting in reduced access time and memory consumption.[23] [24] [25]
Open addressing
See main article: Open addressing.
Open addressing is another collision resolution technique in which every entry record is stored in the bucket array itself, and the hash resolution is performed through probing. When a new entry has to be inserted, the buckets are examined, starting with the hashed-to slot and proceeding in some probe sequence, until an unoccupied slot is found. When searching for an entry, the buckets are scanned in the same sequence, until either the target record is found, or an unused array slot is found, which indicates an unsuccessful search.[26]
Well-known probe sequences include:
- Linear probing, in which the interval between probes is fixed (usually 1).[27]
- Quadratic probing, in which the interval between probes is increased by adding the successive outputs of a quadratic polynomial to the value given by the original hash computation.
- Double hashing, in which the interval between probes is computed by a secondary hash function.
The performance of open addressing may be slower compared to separate chaining since the probe sequence increases when the load factor
approaches 1. The probing results in an
infinite loop if the load factor reaches 1, in the case of a completely filled table. The
average cost of linear probing depends on the hash function's ability to
distribute the elements
uniformly throughout the table to avoid
clustering, since formation of clusters would result in increased search time.
Caching and locality of reference
Since the slots are located in successive locations, linear probing could lead to better utilization of CPU cache due to locality of references resulting in reduced memory latency.
Other collision resolution techniques based on open addressing
Coalesced hashing
See main article: Coalesced hashing.
Coalesced hashing is a hybrid of both separate chaining and open addressing in which the buckets or nodes link within the table.[28] The algorithm is ideally suited for fixed memory allocation. The collision in coalesced hashing is resolved by identifying the largest-indexed empty slot on the hash table, then the colliding value is inserted into that slot. The bucket is also linked to the inserted node's slot which contains its colliding hash address.
Cuckoo hashing
See main article: Cuckoo hashing.
Cuckoo hashing is a form of open addressing collision resolution technique which guarantees
worst-case lookup complexity and constant amortized time for insertions. The collision is resolved through maintaining two hash tables, each having its own hashing function, and collided slot gets replaced with the given item, and the preoccupied element of the slot gets displaced into the other hash table. The process continues until every key has its own spot in the empty buckets of the tables; if the procedure enters into
infinite loop—which is identified through maintaining a threshold loop counter—both hash tables get rehashed with newer hash functions and the procedure continues.
[29] Hopscotch hashing
See main article: Hopscotch hashing.
Hopscotch hashing is an open addressing based algorithm which combines the elements of cuckoo hashing, linear probing and chaining through the notion of a neighbourhood of buckets—the subsequent buckets around any given occupied bucket, also called a "virtual" bucket.[30] The algorithm is designed to deliver better performance when the load factor of the hash table grows beyond 90%; it also provides high throughput in concurrent settings, thus well suited for implementing resizable concurrent hash table. The neighbourhood characteristic of hopscotch hashing guarantees a property that, the cost of finding the desired item from any given buckets within the neighbourhood is very close to the cost of finding it in the bucket itself; the algorithm attempts to be an item into its neighbourhood—with a possible cost involved in displacing other items.
Each bucket within the hash table includes an additional "hop-information"—an H-bit bit array for indicating the relative distance of the item which was originally hashed into the current virtual bucket within H-1 entries. Let
and
be the key to be inserted and bucket to which the key is hashed into respectively; several cases are involved in the insertion procedure such that the neighbourhood property of the algorithm is vowed: if
is empty, the element is inserted, and the leftmost bit of bitmap is
set to 1; if not empty, linear probing is used for finding an empty slot in the table, the bitmap of the bucket gets updated followed by the insertion; if the empty slot is not within the range of the
neighbourhood, i.e.
H-1, subsequent swap and hop-info bit array manipulation of each bucket is performed in accordance with its neighbourhood
invariant properties.
Robin Hood hashing
Robin Hood hashing is an open addressing based collision resolution algorithm; the collisions are resolved through favouring the displacement of the element that is farthest—or longest probe sequence length (PSL)—from its "home location" i.e. the bucket to which the item was hashed into.[31] Although Robin Hood hashing does not change the theoretical search cost, it significantly affects the variance of the distribution of the items on the buckets,[32] i.e. dealing with cluster formation in the hash table.[33] Each node within the hash table that uses Robin Hood hashing should be augmented to store an extra PSL value.[34] Let
be the key to be inserted,
be the (incremental) PSL length of
,
be the hash table and
be the index, the insertion procedure is as follows:
[35]
: the iteration goes into the next bucket without attempting an external probe.
: insert the item
into the bucket
; swap
with
—let it be
; continue the probe from the
st bucket to insert
; repeat the procedure until every element is inserted.
Dynamic resizing
Repeated insertions cause the number of entries in a hash table to grow, which consequently increases the load factor; to maintain the amortized
performance of the lookup and insertion operations, a hash table is dynamically resized and the items of the tables are
rehashed into the buckets of the new hash table, since the items cannot be copied over as varying table sizes results in different hash value due to
modulo operation.
[36] If a hash table becomes "too empty" after deleting some elements, resizing may be performed to avoid excessive
memory usage.
[37] Resizing by moving all entries
Generally, a new hash table with a size double that of the original hash table gets allocated privately and every item in the original hash table gets moved to the newly allocated one by computing the hash values of the items followed by the insertion operation. Rehashing is simple, but computationally expensive.[38]
Alternatives to all-at-once rehashing
Some hash table implementations, notably in real-time systems, cannot pay the price of enlarging the hash table all at once, because it may interrupt time-critical operations. If one cannot avoid dynamic resizing, a solution is to perform the resizing gradually to avoid storage blip—typically at 50% of new table's size—during rehashing and to avoid memory fragmentation that triggers heap compaction due to deallocation of large memory blocks caused by the old hash table.[39] In such case, the rehashing operation is done incrementally through extending prior memory block allocated for the old hash table such that the buckets of the hash table remain unaltered. A common approach for amortized rehashing involves maintaining two hash functions
and
. The process of rehashing a bucket's items in accordance with the new hash function is termed as
cleaning, which is implemented through
command pattern by encapsulating the operations such as
,
and
through a
wrapper such that each element in the bucket gets rehashed and its procedure involve as follows:
bucket.
bucket.
- The command gets executed.
Linear hashing
See main article: Linear hashing. Linear hashing is an implementation of the hash table which enables dynamic growths or shrinks of the table one bucket at a time.[40]
Performance
The performance of a hash table is dependent on the hash function's ability in generating quasi-random numbers (
) for entries in the hash table where
,
and
denotes the key, number of buckets and the hash function such that
. If the hash function generates the same
for distinct keys (
), this results in
collision, which is dealt with in a variety of ways. The constant time complexity (
) of the operation in a hash table is presupposed on the condition that the hash function doesn't generate colliding indices; thus, the performance of the hash table is directly proportional to the chosen hash function's ability to
disperse the indices.
[41] However, construction of such a hash function is
practically infeasible, that being so, implementations depend on
case-specific collision resolution techniques in achieving higher performance.
Applications
Associative arrays
See main article: Associative array. Hash tables are commonly used to implement many types of in-memory tables. They are used to implement associative arrays.[42]
Database indexing
Hash tables may also be used as disk-based data structures and database indices (such as in dbm) although B-trees are more popular in these applications.[43]
Caches
See main article: Cache (computing). Hash tables can be used to implement caches, auxiliary data tables that are used to speed up the access to data that is primarily stored in slower media. In this application, hash collisions can be handled by discarding one of the two colliding entries—usually erasing the old item that is currently stored in the table and overwriting it with the new item, so every item in the table has a unique hash value.[44] [45]
Sets
See main article: Set data structure. Hash tables can be used in the implementation of set data structure, which can store unique values without any particular order; set is typically used in testing the membership of a value in the collection, rather than element retrieval.[46]
Transposition table
See main article: Transposition table. A transposition table to a complex Hash Table which stores information about each section that has been searched.[47]
Implementations
Many programming languages provide hash table functionality, either as built-in associative arrays or as standard library modules.
In JavaScript, an "object" is a mutable collection of key-value pairs (called "properties"), where each key is either a string or a guaranteed-unique "symbol"; any other value, when used as a key, is first coerced to a string. Aside from the seven "primitive" data types, every value in JavaScript is an object.[48] ECMAScript 2015 also added the Map
data structure, which accepts arbitrary values as keys.[49]
C++11 includes [[unordered map (C++)|unordered_map]]
in its standard library for storing keys and values of arbitrary types.[50]
Go's built-in map
implements a hash table in the form of a type.[51]
Java programming language includes the HashSet
, HashMap
, LinkedHashSet
, and LinkedHashMap
generic collections.[52]
Python's built-in dict
implements a hash table in the form of a type.[53]
Ruby's built-in Hash
uses the open addressing model from Ruby 2.4 onwards.[54]
Rust programming language includes HashMap
, HashSet
as part of the Rust Standard Library.[55]
The .NET standard library includes HashSet
and Dictionary
,[56] [57] so it can be used from languages such as C# and VB.NET.[58]
See also
Further reading
- Book: Tamassia . Roberto . Data structures and algorithms in Java : [updated for Java 5.0] ]. limited . 2006 . Wiley . Hoboken, NJ . 978-0-471-73884-8 . 369–418 . 4th . Michael T. . Goodrich . Chapter Nine: Maps and Dictionaries.
- McKenzie. B. J. . R. . Harries . T. . Bell . Selecting a hashing algorithm . Software: Practice and Experience . Feb 1990 . 20 . 2 . 209–224 . 10.1002/spe.4380200207. 10092/9691 . 12854386 . free .
External links
Notes and References
- Book: Cormen . Thomas H. . Thomas H. Cormen . Leiserson . Charles E. . Charles E. Leiserson . Rivest . Ronald L. . Ronald L. Rivest . Stein . Clifford . Clifford Stein . Introduction to Algorithms . 3rd . Massachusetts Institute of Technology . 2009 . 978-0-262-03384-8 . 253–280 . Introduction to Algorithms .
- Web site: Charles E. . Leiserson . Charles E. Leiserson . Lecture 13: Amortized Algorithms, Table Doubling, Potential Method . https://web.archive.org/web/20090807022046/http://videolectures.net/mit6046jf05_leiserson_lec13/ . August 7, 2009 . course MIT 6.046J/18.410J Introduction to Algorithms . Fall 2005 . live.
- Book: Knuth, Donald . Donald Knuth . The Art of Computer Programming . 3: Sorting and Searching . 2nd . Addison-Wesley . 1998 . 978-0-201-89685-5 . 513–558 .
- Book: Cormen . Thomas H. . Thomas H. Cormen . Leiserson . Charles E. . Charles E. Leiserson . Rivest . Ronald L. . Ronald L. Rivest . Stein . Clifford . Clifford Stein . Introduction to Algorithms . MIT Press and McGraw-Hill . 2001 . 978-0-262-53196-2 . 2nd . 221–252 . Chapter 11: Hash Tables . Introduction to Algorithms .
- Book: 10.1002/9780470630617 . Hashing in Computer Science . 2010 . Konheim . Alan G. . 978-0-470-34473-6 .
- Book: 10.1201/9781420035179 . Handbook of Data Structures and Applications . 2004 . 978-0-429-14701-2 . Mehta . Mehta . Sahni . Dinesh P. . Dinesh P. . Sartaj .
- Web site: CS 312: Hash tables and amortized analysis. Cornell University, Department of Computer Science. Andrew. Mayers. 26 October 2021. 2008. https://web.archive.org/web/20210426052033/http://www.cs.cornell.edu/courses/cs312/2008sp/lectures/lec20.html. 26 April 2021. live. cs.cornell.edu.
- James S. Plank and Brad Vander Zanden."CS140 Lecture notes -- Hashing".
- Maurer . W. D. . Lewis . T. G. . Hash Table Methods . ACM Computing Surveys . March 1975 . 7 . 1 . 5–19 . 10.1145/356643.356645 . 17874775 .
- Lu . Yi . Prabhakar . Balaji . Bonomi . Flavio . 10.1109/ISIT.2006.261567 . 2006 IEEE International Symposium on Information Theory . 2774–2778 . Perfect Hashing for Network Applications . 2006. 1-4244-0505-X . 1494710 .
- Belazzougui . Djamal . Botelho . Fabiano C. . Dietzfelbinger . Martin . Hash, displace, and compress . 10.1007/978-3-642-04128-0_61 . Berlin . 2557794 . 682–693 . Springer . . Algorithms—ESA 2009: 17th Annual European Symposium, Copenhagen, Denmark, September 7–9, 2009, Proceedings . 5757 . 2009. 10.1.1.568.130.
- Owolabi . Olumide . Empirical studies of some hashing functions . Information and Software Technology . February 2003 . 45 . 2 . 109–112 . 10.1016/S0950-5849(02)00174-X .
- Karl . Pearson . Karl Pearson . 1900 . On the criterion that a given system of deviations from the probable in the case of a correlated system of variables is such that it can be reasonably supposed to have arisen from random sampling . Philosophical Magazine . Series 5 . 50 . 302 . 157–175 . 10.1080/14786440009463897 .
- Robin . Plackett . Robin Plackett . 1983 . Karl Pearson and the Chi-Squared Test . International Statistical Review . 51 . 1 . 59–72 . 10.2307/1402731 . 1402731 .
- Web site: Prime Double Hash Table. March 1997. 2015-05-10. Wang. Thomas. https://web.archive.org/web/19990903133921/http://www.concentric.net/~Ttwang/tech/primehash.htm. 1999-09-03. dead.
- Wegman . Mark N. . Carter . J.Lawrence . New hash functions and their use in authentication and set equality . Journal of Computer and System Sciences . June 1981 . 22 . 3 . 265–279 . 10.1016/0022-0000(81)90033-7 . free .
- Book: The Art of Computer Programming: Volume 3: Sorting and Searching. Addison-Wesley Professional . Donald E. Knuth. 24 April 1998. 978-0-201-89685-5.
- Book: Robert. Sedgewick. Kevin. Wayne. Algorithms. Princeton University, Department of Computer Science. 4. 1. Addison-Wesley Professional . 2011. Robert Sedgewick (computer scientist).
- Book: Cormen . Thomas H. . Thomas H. Cormen. Leiserson . Charles E. . Charles E. Leiserson. Rivest . Ronald L. . Ronald L. Rivest. Stein . Clifford . Clifford Stein. Introduction to Algorithms. Massachusetts Institute of Technology. 2001. 978-0-262-53196-2. 2nd. Chapter 11: Hash Tables. Introduction to Algorithms .
- Web site: Erik . Demaine . Jeff . Lind . 6.897: Advanced Data Structures. MIT Computer Science and Artificial Intelligence Laboratory . Spring 2003 . Lecture 2 . 2008-06-30 . live . https://web.archive.org/web/20100615203901/http://courses.csail.mit.edu/6.897/spring03/scribe_notes/L2/lecture2.pdf . June 15, 2010 . mdy-all .
- Willard . Dan E. . Dan Willard . 10.1137/S0097539797322425 . 3 . . 1740562 . 1030–1049 . Examining computational geometry, van Emde Boas trees, and hashing from the perspective of the fusion tree . 29 . 2000. .
- Book: 10.1007/11575832_1 . Enhanced Byte Codes with Restricted Prefix Properties . String Processing and Information Retrieval . Lecture Notes in Computer Science . 2005 . Culpepper . J. Shane . Moffat . Alistair . 3772 . 1–12 . 978-3-540-29740-6 .
- Askitis . Nikolas . Sinha . Ranjan . Engineering scalable, cache and space efficient tries for strings . The VLDB Journal . October 2010 . 19 . 5 . 633–660 . 10.1007/s00778-010-0183-9 .
- Cache-conscious Collision Resolution in String Hash Tables . Nikolas . Askitis . Justin . Zobel . October 2005 . 978-3-540-29740-6 . 91–102 . Proceedings of the 12th International Conference, String Processing and Information Retrieval (SPIRE 2005) . 10.1007/11575832_11 . 3772/2005.
- Fast and Compact Hash Tables for Integer Keys . Nikolas . Askitis . 2009 . 978-1-920682-72-9 . 113–122 . Proceedings of the 32nd Australasian Computer Science Conference (ACSC 2009) . 91 . dead . https://web.archive.org/web/20110216180225/http://crpit.com/confpapers/CRPITV91Askitis.pdf . February 16, 2011 . mdy-all . June 13, 2010 .
- Book: Data Structures Using C . Aaron M. . Tenenbaum . Yedidyah . Langsam . Moshe J. . Augenstein . Prentice Hall . 1990 . 978-0-13-199746-2 . 456–461, p. 472 .
- Book: Pagh . Rasmus . Rasmus Pagh . Rodler . Flemming Friche. Cuckoo Hashing . 10.1007/3-540-44676-1_10 . Algorithms — ESA 2001 . Lecture Notes in Computer Science . 2161 . 121–133. 2001 . 978-3-540-42493-2 . 10.1.1.25.4189.
- Book: Oxford University Press. 1987. Jeffery S.. Vitter. Wen-Chin. Chen. 978-0-19-504182-8 . New York, United States. The design and analysis of coalesced hashing. registration. Archive.org.
- Book: Pagh . Rasmus . Rasmus Pagh . Rodler . Flemming Friche. Cuckoo Hashing . 10.1007/3-540-44676-1_10 . Algorithms — ESA 2001 . Lecture Notes in Computer Science . 2161. 121–133 . 2001 . 978-3-540-42493-2 . 10.1.1.25.4189.
- Book: 10.1007/978-3-540-87779-0_24 . Hopscotch Hashing . Distributed Computing . Lecture Notes in Computer Science . 2008 . Herlihy . Maurice . Shavit . Nir . Tzafrir . Moran . 5218 . 350–364 . 978-3-540-87778-3 .
- Book: Celis, Pedro. Robin Hood Hashing. University of Waterloo, Dept. of Computer Science. 1986. Ontario, Canada. 978-0-315-29700-5 . 14083698. https://web.archive.org/web/20211101071032/https://cs.uwaterloo.ca/research/tr/1986/CS-86-14.pdf. 1 November 2021. 2 November 2021. live.
- Poblete . P. V. . Viola . A. . Analysis of Robin Hood and Other Hashing Algorithms Under the Random Probing Model, With and Without Deletions . Combinatorics, Probability and Computing . July 2019 . 28 . 4 . 600–617 . 10.1017/S0963548318000408 . 125374363 .
- Web site: Lecture 13: Hash tables. Cornell University, Department of Computer Science. Michael. Clarkson. 1 November 2021. 2014. https://web.archive.org/web/20211007011300/https://www.cs.cornell.edu/courses/cs3110/2014fa/lectures/13/lec13.html. 7 October 2021. live. cs.cornell.edu.
- Web site: Cornell University, Department of Computer Science. JavaHyperText and Data Structure: Robin Hood Hashing. 2 November 2021. David. Gries. 2017. https://web.archive.org/web/20210426051503/http://www.cs.cornell.edu/courses/JavaAndDS/files/hashing_RobinHood.pdf. 26 April 2021. live. cs.cornell.edu.
- Pedro. Celis. 28 March 1988. 246. Indiana University, Department of Computer Science. Bloomington, Indiana. External Robin Hood Hashing. https://web.archive.org/web/20211103013505/https://legacy.cs.indiana.edu/ftp/techreports/TR246.pdf. 3 November 2021. 2 November 2021. live.
- Web site: Chapter C5: Hash Tables. Wayne. Goddard. 2021. 4 December 2023. Clemson University. 15–16.
- Web site: Intro to Algorithms: Resizing Hash Tables. 25 February 2011. Srini. Devadas. Erik. Demaine. Massachusetts Institute of Technology, Department of Computer Science. MIT OpenCourseWare. https://web.archive.org/web/20210507102944/https://courses.csail.mit.edu/6.006/spring11/rec/rec07.pdf. 7 May 2021. live. 9 November 2021.
- Book: Thareja . Reema . Data Structures Using C . 2014 . Oxford University Press . 978-0-19-809930-7 . Hashing and Collision . 464–488 .
- All Computer Science and Engineering Research. Hash Tables for Embedded and Real-time systems. 10.7936/K7WD3XXV . 18 March 2003. Scott. Friedman. Anand. Krishnan. Nicholas. Leidefrost. Washington University in St. Louis. Northwestern University, Department of Computer Science. https://web.archive.org/web/20210609163643/https://users.cs.northwestern.edu/~sef318/docs/hashtables.pdf. 9 June 2021. 9 November 2021. live.
- Witold . Litwin . Linear hashing: A new tool for file and table addressing . 1980 . 212–223 . Proc. 6th Conference on Very Large Databases. . cs.cmu.edu. https://web.archive.org/web/20210506233325/http://www.cs.cmu.edu/afs/cs.cmu.edu/user/christos/www/courses/826-resources/PAPERS+BOOK/linear-hashing.PDF. 6 May 2021. live. 10 November 2021.
- Web site: Analysing and Improving Hash Table Performance. Tom Van. Dijk. University of Twente. Netherlands. 31 December 2021. https://web.archive.org/web/20211106094558/http://www.tvandijk.nl/pdf/bscthesis.pdf. 6 November 2021. live. 2010.
- .
- Web site: Indexes and external sorting. https://ghostarchive.org/archive/HW0hp. 26 March 2022. dead. 26 March 2022. . Lech Banachowski.
- Zhong . Liang . Zheng . Xueqian . Liu . Yong . Wang . Mengting . Cao . Yang . Cache hit ratio maximization in device-to-device communications overlaying cellular networks . China Communications . February 2020 . 17 . 2 . 232–238 . 10.23919/jcc.2020.02.018 . 212649328 .
- Web site: Understanding Caching. Linux Journal. 16 April 2022. 1 January 2004. James. Bottommley. live. https://web.archive.org/web/20201204195114/https://www.linuxjournal.com/article/7105. 4 December 2020.
- Web site: Set & Hash Tables. Jill Seaman. https://web.archive.org/web/20220401134706/https://userweb.cs.txstate.edu/~js236/201412/cs5301/week13.pdf. April 1, 2022. 26 March 2022. Texas State University. 2014. bot: unknown.
- Web site: Transposition Table - Chessprogramming wiki. chessprogramming.org. 2020-05-01. February 14, 2021. https://web.archive.org/web/20210214110941/https://www.chessprogramming.org/Transposition_Table. live.
- Web site: JavaScript data types and data structures - JavaScript MDN . developer.mozilla.org . 24 July 2022.
- Web site: 2023-06-20 . Map - JavaScript MDN . 2023-07-15 . developer.mozilla.org . en-US.
- Web site: Programming language C++ - Technical Specification. 8 February 2022. International Organization for Standardization. https://web.archive.org/web/20220121061142/http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2013/n3690.pdf. 21 January 2022. 812–813.
- Web site: The Go Programming Language Specification. go.dev. January 1, 2023.
- Web site: Lesson: Implementations (The Java™ Tutorials > Collections). docs.oracle.com. April 27, 2018. live. https://web.archive.org/web/20170118041252/https://docs.oracle.com/javase/tutorial/collections/implementations/index.html. January 18, 2017. mdy-all.
- . Juan. Zhang. Yunwei. Jia. Redis rehash optimization based on machine learning. 1453. 2020. 1 . 3. 10.1088/1742-6596/1453/1/012048 . 2020JPhCS1453a2048Z . 215943738 . free.
- Web site: Ruby 2.4 Released: Faster Hashes, Unified Integers and Better Rounding. Jonan Scheffler. December 25, 2016. heroku.com. July 3, 2019. mdy-all. July 3, 2019. https://web.archive.org/web/20190703145530/https://blog.heroku.com/ruby-2-4-features-hashes-integers-rounding#hash-changes. live.
- Web site: doc.rust-lang.org . live . https://web.archive.org/web/20221208155205/https://doc.rust-lang.org/std/index.html . December 8, 2022 . December 14, 2022 . mdy-all.
- Web site: HashSet Class (System.Collections.Generic) . learn.microsoft.com . 1 July 2023 . en-us.
- Web site: dotnet-bot . Dictionary Class (System.Collections.Generic) . 2024-01-16 . learn.microsoft.com . en-us.
- Web site: VB.NET HashSet Example . Dot Net Perls.