Question is how much it costs to create an ArrayList from a HashMap.values() Collection? Or creating the values Collection alone? Assuming Map.size() > 100k. Objects could also be held in ArrayList (instead of HashMap) all the time which has implications in other parts (modifications of elements, easy by key). The ArrayList is used to iterate over every n-th element. (That's why the values collection can't be used directly). No modifications are done during the iteration.
|
|
Source:
Your question:
That's a linear complexity (as Bozho said) since
the ArrayList, Hope this helps. |
|||
|
|
|
You can use an Creating a list of any collection has a linear complexity. |
|||
|
To elaborate on @Bozho's solution you can just do.
|
||||
|
|
|
So Just get the values and then do a for loop:
|
||||
|
|
|
You can create Your own HashMap, that holds the Arraylist collection of values directly (i do not believe that HashMap does it for free, the data structure for it is different). But this requires some additional coding from Your side. |
|||
|
|