1.

What Do You Mean By Hash Table?

Answer»

The hash table DATA structure is MERELY an array of some fixed size, containing the keys. A KEY is a STRING with an associated value. Each key is MAPPED into some number in the range 0 to tablesize-1 and placed in the appropriate cell.

The hash table data structure is merely an array of some fixed size, containing the keys. A key is a string with an associated value. Each key is mapped into some number in the range 0 to tablesize-1 and placed in the appropriate cell.



Discussion

No Comment Found