I need to loop through a HashMap, but to give importance to the values' order.
For example, consider the following hash map of <String, Integer>:
{"dog" : 2, "bird": 3, "cat" : 1}
Now, I need to loop through the hasp map in order of ascending values, so that
for () {
System.out.println( currentKey );
}
will always output
"cat", "dog", "bird"
{"r" : 2, "q": 3, "z" : 1}, would you wantz r q(the order according to the values 1, 2, 3) orq r z? You've said "values' order" and so I assume you wantz r q(the order according to the values 1, 2, 3), but... Also, can there be duplicate values? E.g.,{"r" : 2, "q": 3, "z" : 1, "w": 1}(there are two entries with the value1). If so, what order do you want them in? By key? Indeterminate? – T.J. Crowder Jan 22 '11 at 10:18{"r" : 2, "q": 3, "z" : 1, "w": 1}(there are two entries with the value1). If so, what order do you want them in? By key? Indeterminate?" – T.J. Crowder Jan 22 '11 at 10:37