This question already has an answer here:
- map vs. hash_map in C++ 4 answers
in C++ STL, there are two map, map and hashmap. Anyone know the main difference of them?
|
This question already has an answer here:
in C++ STL, there are two map, map and hashmap. Anyone know the main difference of them? |
|||
|
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
map uses a red-black tree as the data structure, so the elements you put in there are sorted, and insert/delete is O(log(n)). The elements need to be implement at least hashmap uses a hash, so elements are unsorted, insert/delete is O(1). Elements need to implement at least |
|||||||||||
|
|
hash_map uses a hash table. This is "constant" time in theory. Most implementations use a "collision" hash table. What happens in reality is:
The theory is that if you have a big enough table, the operations are constant time, i.e. it does not depend on the number of actual elements you have. In practice, of course, the more elements you have the more collisions occur. std::map uses a binary tree. There is no need to define a hash function for an object, just strictly ordered comparison. On insertion it recurses down the tree to find the insertion point (and whether there are any duplicates) and adds the node, and may need to rebalance the tree so the depth of leaves is never more than 1 apart. Rebalancing time is relative to the depth of the tree too so all these operations are O(log N) where N is the number of elements. The advantages of hash is the complexity The advantages of the tree is:
One other issue with |
||||
|
|
|
|||
|
|
|
The main difference is the searching time. for few data is better map for lots of data is better hashmap anyway the tecnical answers given previously are correct. |
|||||
|