Pregunta 1
Pregunta
What does the efficiency of a hash table search depend on?
Pregunta 2
Pregunta
Find min and max values (Range Query) ______ be done in a hash table.
Respuesta
-
A) cannot
-
B) can
-
C) generally cannot
-
D) generally can
Pregunta 3
Pregunta
Which way is more efficient,linear or quadratic probing?
Respuesta
-
Quadratic
-
none of the above
Pregunta 4
Pregunta
what is the first thing you do when deleteing something from the hash?
Pregunta 5
Pregunta
to insert using open addressing, we need to find a closed location.
Pregunta 6
Pregunta
name of the of the hashing disadvantages
Pregunta 7
Pregunta
As the load factor increases, what happens to the number of unsuccessful searches
in linear and quadratic probing?
Respuesta
-
A) They decrease
-
B) They increase rapidly
-
C) They linearly
-
D) They stay the same
Pregunta 8
Pregunta
Disadvantage of hash tables is that they are not a general purpose data structure for storage and retrieval.
Pregunta 9
Pregunta
What are the two steps in inserting into a hash insert?
Respuesta
-
A. Hash the key, insert the item
-
B. Insert the item, hash the key
-
C. Hash the item, insert the key
-
D. Insert the key, remove the item
Pregunta 10
Pregunta
What is a disadvantage of hash tables?
Pregunta 11
Pregunta
Which of the following is NOT a disadvantage of hash tables? (ie: which of the following are hash tables NOT bad at?)
Respuesta
-
A. traversing in sorterd order
-
B. finding the mininmum or maximum value in a search key
-
C. insertion is very inefficient
-
D. range query
Pregunta 12
Pregunta
Which of the following are disadvantages of hash tables?
Pregunta 13
Pregunta
which of the following is a disadvantage of using a hash table?
Pregunta 14
Pregunta
Hashing efficiency for a particular search also depends on whether the search is successful.
Unsuccessful searches generally require more time than successful searches.
Pregunta 15
Pregunta
What is the efficency of insertion into a hash table?