I have this HashMap:
HashMap<String, Integer> m
which basically stores any word (String) and its frequency (integer). The following code is ordering the HashMap by value:
public static Map<String, Integer> sortByValue(Map<String, Integer> map) {
List<Map.Entry<String, Integer>> list = new LinkedList<Map.Entry<String, Integer>>(map.entrySet());
Collections.sort(list, new Comparator<Map.Entry<String, Integer>>() {
public int compare(Map.Entry<String, Integer> m1, Map.Entry<String, Integer> m2) {
return (m2.getValue()).compareTo(m1.getValue());
}
});
Map<String, Integer> result = new LinkedHashMap<String, Integer>();
for (Map.Entry<String, Integer> entry : list) {
result.put(entry.getKey(), entry.getValue());
}
return result;
}
Now the scenario has changed and i have this:
HashMap<String, doc>;
class doc{
integer freq;
HashMap<String, Double>;
}
How can i sort this HashMap by value, following the same approach as sortByValue?