I need a Map that could be iterated in the decreasing order of its values. Does any of the standard libraries like Apache Commons or Guava provide this kind of map ?
|
feedback
|
|
I would do this with Guava as follows:
| |||||||||||||
feedback
|
|
With guava, there is even cleaner way than @LoisWasserman's anwer - using Ordering combined with
or if values aren't
An example (with first option - natural ordering):
outputs:
(I use ImmutableSortedMap here, but TreeMap can also be used if mutability is required.) EDIT: If there are identical values (more exactly if there are two values for which
prints:
| |||||||||||||
feedback
|
|
I think the But I don't think this allows for duplicate values - as the name says, the structure is simply based on keeping two trees, which is really the only thing that makes sense, since values in a map have no meaning to the map structure. | |||||||
feedback
|
|
What about putting the values also in TreeSet ?
or
| |||
|
feedback
|
|
I'd put entries on the list and sort it. I don't recall any map that can be ordered by values, only by keys. You could use BiMap from Guava, but it requires values uniqueness. Example:
| |||
|
feedback
|
|
I think you have to roll your own implementation of such a map. Fortunately, it shouldn't be much of an issue with Guava:
Fail-fast iterators are not present in this implementation; please add them for yourself if required. Please also note that setting a value via Map.Entry.setValue would cause havoc with the sort order, which is why I used | ||||
|
feedback
|
Mapinterface that is sorted called SortedMap: docs.oracle.com/javase/7/docs/api/java/util/SortedMap.html You can then just pick a concrete implementation of theSortedMapinterface – Hunter McMillen Jan 17 at 14:53