Hashing Flashcards

1
Q

Map

A

A map is a data structure that stores entries

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Key and value

A

Each entry contains two parts: key and value. The key is also
called a search key, which is used to search for the corresponding
value.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Hashing

A

Hashing is a technique that retrieves the value using the index
obtained from the key without performing a search.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Hash function

A

A typical hash function first converts a search key to an integer value
called a hash code, and then compresses the hash code into an
index to the hash table.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly