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?
feedback
|
|
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 | |||||||||||||||||||||
feedback
|
|
From http://www.programmersheaven.com/download/49349/download.aspx
| |||||
feedback
|
|
3 1-line answers... I would use google collections to do this - if your values are
Which will create a function (object) for the map [that takes any of the keys as input, returning the respective value], and then apply natural (comparable) ordering to them [the values]. If they're not comparable, then you'll need to do something along the lines of
These may be applied to a TreeMap (as NB: If you are going to use a TreeMap, remember that if a comparison == 0, then the item is already in the list (which will happen if you have multiple values that compare the same). To alleviate this, you could add your key to the comparator like so (presuming that your keys and values are
= Apply natural ordering to the value mapped by the key, and compound that with the natural ordering of the key Note that this will still not work if your keys compare to 0, but this should be sufficient for most See Ordering.onResultOf() and Functions.forMap(). ImplementationSo now that we've got a comparator that does what we want, we need to get a result from it.
Now this will most likely work work, but:
Point 1 is a bit of a deal-breaker for me; google collections is incredibly lazy (which is good: you can do pretty much every operation in an instant; the real work is done when you start using the result), and this requires copying a whole map! Don't worry though; if you were obsessed enough with having a "live" map sorted in this manner, you could solve not one but both(!) of the above issues with something crazy like the following:
See? Tricky huh? When we put, we can grab out the about to be inserted entry, and when the TreeSet calls the comparator with an internal key and the inserted key, it will call The constructor would need to be called as
The third option (in the first section) is really tricky to support in a generic manner. | |||||||||||||
feedback
|
|
Here's a 1.5-friendly version you're free to use:
And an associated JUnit4 test so you don't have to take my word for it:
| |||
|
feedback
|
|
The commons-collections library contains a solution called TreeBidiMap. Or, you could have a look at the Google Collections API. It has TreeMultimap which you could use. And if you don't want to use these framework... they come with source code. | |||||||||
feedback
|
|
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... | ||||
|
feedback
|
|
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. | ||||
|
feedback
|
|
I've looked at the given answer, but a lot of them are more complicated than needed or remove map elements when several keys have same value. Here is a solution that I think fits better:
Note that the map is sorted from the highest value to the lowest. | |||||
feedback
|
|
This is a variation of Anthony's answer, which doesn't work if there are duplicate values:
Note that it's rather up in the air how to handle nulls. One important advantage of this approach is that it actually returns a Map, unlike some of the other solutions offered here. | |||
|
feedback
|
|
The answer voted for the most does not work when you have 2 items that equals. the TreeMap leaves equal values out. the exmaple: unsorted map key/value: D/67.3 key/value: A/99.5 key/value: B/67.4 key/value: C/67.5 key/value: E/99.5 results key/value: A/99.5 key/value: C/67.5 key/value: B/67.4 key/value: D/67.3 So leaves out E!! For me it worked fine to adjust the comparator, if it equals do not return 0 but -1. in the example:
now it returns: unsorted map: key/value: D/67.3 key/value: A/99.5 key/value: B/67.4 key/value: C/67.5 key/value: E/99.5 results: key/value: A/99.5 key/value: E/99.5 key/value: C/67.5 key/value: B/67.4 key/value: D/67.3 as a response to Aliens (2011 nov. 22): I Am using this solution for a map of Integer Id's and names, but the idea is the same, so might be the code above is not correct (I will write it in a test and give you the correct code), this is the code for a Map sorting, based on the solution above:
and this is the test class (I just tested it, and this works for the Integer, String Map:
here is the code for the Comparator of a Map:
and this is the testcase for this:
of cource you can make this a lot more generic, but I just needed it for 1 case (the Map) | ||||
|
feedback
|
|
Depending on the context, using | |||
|
feedback
|
|
Based on @devinmoore code, a map sorting methods using generics and supporting both ascending and descending ordering.
| |||
|
feedback
|
|
This link shows how you can do it using TreeMap class with a custom Comparator. | |||
|
feedback
|
|
Use a generic comparator such as :
| |||
|
feedback
|
|
Since TreeMap<> does not work for values that can be equal, I used this:
You might want to put list in a LinkedHashMap, but if you're only going to iterate over it right away, that's superfluous... | |||
|
feedback
|
|
Some simple changes in order to have a sorted map with pairs that have duplicate values. In the compare method (class ValueComparator) when values are equal do not return 0 but return the result of comparing the 2 keys. Keys are distinct in a map so you succeed to keep duplicate values (which are sorted by keys by the way). So the above example could be modified like this:
| |||
|
feedback
|
|
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:
| |||||||||
feedback
|
|
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 | |||
|
feedback
|
|
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)
| |||
|
feedback
|
|
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? | |||
|
feedback
|
|
Here is an OO solution (i.e., doesn't use
Hereby donated to the public domain. | |||
|
feedback
|
|
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):
Output would be: {Abc=Abc_Value, Bcd=Bcd_Value, Cde=Cde_Value} | ||||
|
feedback
|
|
This seems like a common problem that may have been solved by databases - generally a table has a primary key and you can specify sorts on different columns. Is there no comparable Java structure? | ||||
|
feedback
|
|
I found this answer by CliffsNote which I found easier to understand than most of the answers here. It's similar to Anthony's answer, but I couldn't get Anthony's code to work. (I'm still a novice with generics and collections). I hope you find it useful too; it's at the end of this thread. | ||||
|
feedback
|
} // Please try here. I am modifing the code for value sort. | ||||
|
feedback
|
|
Afaik the most cleaner way is utilizing collections to sort map on value:
| |||
|
feedback
|
|
This method will just serve the purpose. (the 'setback' is that the Values must implement the java.util.Comparable interface)
http://javawithswaranga.blogspot.com/2011/06/generic-method-to-sort-hashmap.html | |||
|
feedback
|
|
If you have duplicate keys and only a small set of data (<1000) and your code is not performance critical you can just do the following:
inputUnsortedMap is the input to the code. The variable sortedOutputMap will contain the data in decending order when iterated over. To change order just change > to a < in the if statement. Is not the fastest sort but does the job without any additional dependencies. | |||
|
feedback
|
|
This is just too complicated. Maps were not supposed to do such job as sorting them by Value. The easiest way is to create your own Class so it fits your requirement. In example lower you are supposed to add TreeMap a comparator at place where * is. But by java API it gives comparator only keys, not values. All of examples stated here is based on 2 Maps. One Hash and one new Tree. Which is odd. The example:
So change the map into a set this way:
You will create class
and the Comparator class:
This way you can easily add more dependencies. And as the last point I'll add simple iterator:
| ||||
|
feedback
|
|
For sure the solution of Stephen is really great, but for those who can't use Guava: Here's my solution for sorting by value a map. This solution handle the case where there are twice the same value etc...
The exec: http://www.ideone.com/dq3Lu The output:
Hope it will help some folks | |||
|
feedback
|