I need to iterate through SortedMap's entry set (which is a SortedSet) backwards. The code I'm writing is extremely performance-sensitive, as it's going to be called from many places thousands times per second, maybe more. Any advice on doing it the fastest way?
|
|
In Java 1.6 you can use NavigableSet. |
|||||||
|
|
You could define a SortedMap such as a TreeMap with a custom Comparator that reverses the sorting order. If you need to iterate in both directions, then maybe it's feasible to keep two copies of the data structure in memory? |
||||
|
|
|
A faster way to iterate a collection is to take an array copy of it. This can be iterated forward and backwards without creating an object or even a method call. The downside is you need to update it as well as your collection whenever it changes. In the following example, it takes an average of 1,208 ns to iterate over 1000 element either forward or backward.
Now replace the main loop with and the average time becomes 20,493.
Now lets compare this with taking a copy every time (which I have stated is not as optimal as taking a copy only when changed), the time drops to 15,134 ns! So using NavigableSet could be the slowest of the three options discussed. |
|||||||||
|
|
use this before you fill your map :
|
|||
|
|