Define hashing function
4 years ago
Data Structure and Algorithm
A hashing function is a key-to-transformation, which acts upon a given key to compute the relative position of the key in an array.
A simple hash function
HASH(KEY_Value)= (KEY_Value)mod(Table-size)
Sanisha Maharjan
Jan 23, 2022