Saved Bookmarks
| 1. |
What Do You Mean By Hash Function? |
|
Answer» A hash FUNCTION is a key to ADDRESS TRANSFORMATION which acts upon a given key to COMPUTE the relative position of the key in an array. The choice of hash function should be simple and it must distribute the DATA evenly. A simple hash function is hash_key=key mod tablesize. A hash function is a key to address transformation which acts upon a given key to compute the relative position of the key in an array. The choice of hash function should be simple and it must distribute the data evenly. A simple hash function is hash_key=key mod tablesize. |
|