What factors should I take into account when I need to choose between a hash table or a balanced binary tree in order to implement a set or an associative array?
|
This question cannot be answered, in general, I fear. The issue is that there are many types of hash tables and balanced binary trees, and their performances vary widely. So, the naive answer is: it depends on the functionality you need. Use a hash table if you do not need ordering and a balanced binary tree otherwise. For a more elaborate answer, let's consider some alternatives. Hash Table (see Wikipedia's entry for some basics)
Binary Tree
Let's not forget that O(1) is an asymptotic complexity. For few elements, the coefficient is usually more important (performance-wise). Which is especially true if your hash function is slow... Finally, for sets, you may also wish to consider probabilistic data structures, like Bloom Filters. |
|||
|
|
|
Hash tables are generally better if there isn't any need to keep the data in any sort of sequence. Binary trees are better if the data must be kept sorted. |
|||||||||||||
|
|
A worthy point on a modern architecture: A Hash table will usually, if its load factor is low, have fewer memory reads than a binary tree will. Since memory access tend to be rather costly compared to burning CPU cycles, the Hash table is often faster. In the following Binary tree is assumed to be self-balancing, like a red black tree, an AVL tree or like a treap. On the other hand, if you need to rehash everything in the hash table when you decide to extend it, this may be a costly operation which occur (amortized). Binary trees does not have this limitation. Binary trees are easier to implement in purely functional languages. Binary trees have a natural sort order and a natural way to walk the tree for all elements. When the load factor in the hash table is low, you may be wasting a lot of memory space, but with two pointers, binary trees tend to take up more space. Hash tables are nearly O(1) (depending on how you handle the load factor) vs. Bin trees O(lg n). Trees tend to be the "average performer". There are nothing they do particularly well, but then nothing they do particularly bad. |
|||
|
|
|
A binary search tree requires a total order relationship among the keys. A hash table requires only an equivalence or identity relationship with a consistent hash function. If a total order relationship is available, then a sorted array has lookup performance comparable to binary trees, worst-case insert performance in the order of hash tables, and less complexity and memory use than both. The worst-case insertion complexity for a hash table can be left at O(1)/O(log K) (with K the number of elements with the same hash) if it's acceptable to increase the worst-case lookup complexity to O(K) or O(log K) if the elements can be sorted. Invariants for both trees and hash tables are expensive to restore if the keys change, but less than O(n log N) for sorted arrays. These are factors to take into account in deciding which implementation to use:
|
|||||||||
|
|
Hash tables are faster lookups:
Binary trees:
|
|||||||||||||
|
|
If you''ll have many slightly-different instances of sets, you'll probably want them to share structure. This is easy with trees (if they're immutable or copy-on-write). I'm not sure how well you can do it with hashtables; it's at least less obvious. |
|||
|
|
|
If you only need to access single elements, hashtables are better. If you need a range of elements, you simply have no other option than binary trees. |
|||
|
|
|
To add to the other great answers above, I'd say: Use a hash table if the amount of data will not change (e.g. storing constants); but, if the amount of data will change, use a tree. This is due to the fact that, in a hash table, once the load factor has been reached, the hash table must resize. The resize operation can be very slow. |
|||||||||
|
|
In my experience, hastables are always faster because trees suffer too much of cache effects. To see some real data, you can check the benchmark page of my TommyDS library http://tommyds.sourceforge.net/ Here you can see compared the performance of the most common hashtable, tree and trie libraries available. |
|||
|
|