Hash Functions: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 5: Line 5:
* [[Hash_Table#Hash_Functions|Hash Tables]]
* [[Hash_Table#Hash_Functions|Hash Tables]]
=Overview=
=Overview=
The hash function should be easy to compute, in constant time. It should "spread out" most of the data set (the non-pathological data sets). The has function should be easy to store.

Revision as of 00:28, 17 October 2021

External

Internal

Overview

The hash function should be easy to compute, in constant time. It should "spread out" most of the data set (the non-pathological data sets). The has function should be easy to store.