Given this map
SortedMap<Integer, String> myMap = new TreeMap<Integer, String>();
Instead of a for loop is there a utility function to copy first N items to a destination map?
|
|
Maybe, but not as part of the standard Java API. And: the utility would use a loop inside. So you'll need a loop, but you can create your own "utility" by doing it all in a static method in a utility class:
The complexity is still O(n) (I doubt, that one can achieve O(1)) but you use it like a tool without "seeing" the loop:
|
||||
|
|
|
There's
|
||||
|
|
|
You can use the putAll(Map t) function to copy the items from the map to specified map.But it copies all the items. You cannot copy fixed number of items. http://download.oracle.com/javase/1.4.2/docs/api/java/util/Map.html#putAll%28java.util.Map%29 |
|||
|
|