If LinkedHashMap's time complexity is same as HashMap's complexity why do we need HashMap? What are all the extra overhead LinkedHashMap has when compared to HashMap in Java?
|
LinkedHashMap will take more memory. Each entry in a normal |
|||||||||||
|
You should not confuse complexity with performance. Two algorithms can have the same complexity, yet one can consistently perform better than the other. Remember that
where (And remember that big-O complexity is about the behavior / performance as |
||||
|
|
|
|||
|
|
|
LinkedHashMap is useful datastructure when you need to know the insertion order to the Map. One suitable use case is for the implementation of an LRU cache. Due to order maintainence of the LinkedHashMap, the performance of the datastructure is slightly lower compared to that of a randomized Map such as HashMap. In case you do not need to know the insertion order, you should always go for the HashMap for better performance. |
|||
|
|
|
There is another major difference between HashMap and LinkedHashMap :Iteration is more efficient in case of LinkedHashMap. As Elements in LinkedHashMap are connected with each other so iteration requires time proportional to the size of the map, regardless of its capacity. But in case of HashMap; as there is no fixed order, so iteration over it requires time proportional to its capacity. |
|||
|
|
|
|||
|
|
