How can I sort HashMap keys by their numerical value? Currently, in the natural ordering it looks like this:
1 10 13 2 26 29
I want it to look like this:
29 26 13 10 2 1
Any ideas?
|
|
|
A
Edit I just stumbled across |
|||||
|
|
You can use a TreeMap and then call descendingMap() on it which basically returns a map with the reverse ordering of the keys |
|||
|
|
|
|
|||
|
|
|
You could use TreeMap with the constructor that lets you specify a Comparator. |
|||
|
|
|
Try below code it works fine and based on order flag it will sort ascending or descending.
|
|||
|
|