why do we use hashing for search? what are advantages of using hashing over binary search tree?
|
|
Hashing is generally a constant time operation whereas a Binary Tree has a logarithmic time complexity. Because a hash is calculated not based on the number of items in the collection but on the item being searched for, the size of the collection has no bearing on the time it takes to find an item. However most hashing algorithms will have collisions which then increases the time complexity so it's very unlikely to get a perfect constant time lookup. With a binary tree, you have to do up to log2N comparisons before the item can be found. |
|||||
|
|
Wikipedia explains it well: http://en.wikipedia.org/wiki/Hash_table#Features Summary: Inserts are generally slow, reads are faster than trees. As for Java: Any time you have some key/value pair that you read a lot and write not very often and everything easily fits into RAM, use a HashTable for quick read accesses and incredible easy of code maintenance. |
|||
|
|
|
|||
|
|
|
Hash Tables are best for searching(=) if you have lower inserts and uniform slot distribution. The time complexity is O(n+k) - linear. They are not a good idea if you want to do comparison operations (<, >) |
|||
|
|