1.

What Is A Hash Table?

Answer»

In computing, a hash table is a map of KEYS to values. It is a data structure used to implement an associative ARRAY. It uses a hash function to compute an INDEX into an array of SLOTS, from which DESIRED value can be fetched.

In computing, a hash table is a map of keys to values. It is a data structure used to implement an associative array. It uses a hash function to compute an index into an array of slots, from which desired value can be fetched.



Discussion

No Comment Found