C
Chris
Does anyone know of a good benchmark of HashMap, TreeMap, and maybe some
other alternatives like Trove?
I need to add items to a map, and then get them out in sorted order, and
I'm wondering if it it's faster to use a HashMap, copy to an array, and
then sort, or just use a TreeMap.
other alternatives like Trove?
I need to add items to a map, and then get them out in sorted order, and
I'm wondering if it it's faster to use a HashMap, copy to an array, and
then sort, or just use a TreeMap.