What is the advantage of a hash table over BST?
Posted: Wed Jul 13, 2022 7:43 pm
a) hash table has a better average time complexity for performing insert, delete and search operations
b) hash table requires less space
c) range query is easy with hash table
d) easier to implement
b) hash table requires less space
c) range query is easy with hash table
d) easier to implement