0 0 votes When hashing is used for table addressing, a collision-resolution method is generally required.Why?Collision handling is required only when the table is completely full. Collision handling is required to calculate the initial hash address of every key. Collision handling is required when the table is empty. Collision handling is required whenever the inserted key is not already present. Different keys may hash to the same table address. Algorithms goclasses goclasses-da-dpp goclasses-da-dpp-day-258 goclasses-cs-dpp goclasses-cs-dpp-day-356 algorithms python-&-dsa goclasses-python-&-dsa-practice-questions goclasses-algo-practice-questions hashing collision + – GO Classes 84 views answer comment Share Follow Print See 1 comment 1 1 comment reply ghosharkoprabho commented Aug 25 reply Follow flag e because we could do it with chaining 0 0 replyShare Please log in or register to add a comment.
0 0 votes A hash function maps a potentially large key space into a limited number of table positions.For ex,$h(k)=k\bmod10$Then,$h(17)=7$ and $h(27)=7$Two different keys produce the same address.This is a collision.Therefore, a hash table requires some method for resolving such situations, such as:separate chaining linear probing quadratic probing double hashing Hence,Answer : E GO Classes answered Aug 25 GO Classes comment Share Follow 0 reply Please log in or register to add a comment.