1.

Explain Hash Table?

Answer»

A hash table is a DATA STRUCTURE used to implement an ASSOCIATIVE array, a structure that can map keys to values. A hash table uses a hash FUNCTION to compute an index into an array of buckets or slots, from which the CORRECT value can be found.

A hash table is a data structure used to implement an associative array, a structure that can map keys to values. A hash table uses a hash function to compute an index into an array of buckets or slots, from which the correct value can be found.



Discussion

No Comment Found