I am relatively new to Java, and often find that I need to sort a Map on the values. Since the values are not unique, I find myself converting the keySet into an array, and sorting that array through array sort with a custom comparator that sorts on the value associated with the key. Is there an easier way?
|
3
|
|
|
|
|
|
From http://www.programmersheaven.com/download/49349/download.aspx
|
||||
|
|
|
the commons-collections library contains a solution called TreeBidiMap: or, you could have a look at the Google Collections API. It has a TreeMultimap which you could use: and if you don't want to use these framework... they come with sources. |
||||||
|
|
|
You say you often come across this problem?? I've been programming Java for over 8 years now and must say I haven't needed it more then two or three times. Maybe I am missing something; but I guess you are using a map where a different data structure might be a better solution. Could you give a concrete example? |
||||||
|
|
|
Sorting the keys requires the Comparator to look up each value for each comparison. A more scalable solution would use the entrySet directly, since then the value would be immediately available for each comparison (although I haven't backed this up by numbers). Here's a generic version of such a thing:
There are ways to lessen memory rotation for the above solution. The first ArrayList created could for instance be re-used as a return value; this would require suppression of some generics warnings, but it might be worth it for re-usable library code. Also, the Comparator does not have to be re-allocated at every invocation. Here's a more efficient albeit less appealing version:
Finally, if you need to continously access the sorted information (rather than just sorting it once in a while), you can use an additional multi map. Let me know if you need more details... |
|||
|
|
|
|
If your Map values implement Comparable (e.g. String), this should work
If the map values themselves don't implement Comparable, but you have an instance of Comparable that can sort them, replace the last line with this:
|
||||
|
|
|
It seems much easier than all of the foregoing. Use a TreeMap as follows:
Output: unsorted map key/value: D/67.3 key/value: A/99.5 key/value: B/67.4 key/value: C/67.5 results key/value: A/99.5 key/value: C/67.5 key/value: B/67.4 key/value: D/67.3 |
||
|
|
|
|
Depending on the context, using |
||
|
|
|
|
While I agree that the constant need to sort a map is probably a smell, I think the following code is the easiest way to do it without using a different data structure.
} And here is an embarrassingly incomplete unit test:
} The result is a sorted list of Map.Entry objects, from which you can obtain the keys and values. |
|||
|
|
|
|
Use java.util.TreeMap. "The map is sorted according to the natural ordering of its keys, or by a Comparator provided at map creation time, depending on which constructor is used." |
||||
|
|
|
Sorry, I just read it's about sorting the map upon the values. Was wrong on that, thoght you want key based sortig. Anyway: for sorting upon the keys I found a better solution with a TreeMap (I will try to get a solution for value based sorting ready too):
Old post: I would suggest this operation, maybe you find it well working:
Output would be: {Abc=Abc_Value, Bcd=Bcd_Value, Cde=Cde_Value} Greetz, GHad |
|||
|
|
|
|
Okay, this version works with two new Map objects and two iterations and sorts on values. Hope, the performs well although the map entries must be looped twice:
The solution uses a TreeMap with a Comparator and sorts out all null keys and values. First, the ordering functionality from the TreeMap is used to sort upon the values, next the sorted Map is used to create a result as a LinkedHashMap that retains has the same order of values. Greetz, GHad |
||
|
|
|
|
When I'm faced with this, I just create a list on the side. If you put them together in a custom Map implementation, it'll have a nice feel to it... You can use something like the following, performing the sort only when needed. (Note: I haven't really tested this, but it compiles... might be a silly little bug in there somewhere) (If you want it sorted by both keys and values, have the class extend TreeMap, don't define the accessor methods, and have the mutators call super.xxxxx instead of map_.xxxx)
|
||
|
|
|
|
If you are a beginner, chances are high your approach is wrong. While there are cases where you'd want a map sorted, a map is usually not the right data structure for sorted storage. You'd probably be better off with something like a balanced tree. Are you sure you need the associativity of the map? |
||
|
|
|
|
Based on @devinmoore code, a map sorting methods using generics and supporting both ascending and descending ordering.
|
||
|
