How we will be able to sort a hashmap<key,arraylist>?
I want to sort on the basis of a value in array list.
|
|
|
Do you have to use a HashMap ? If you only need the Map Interface use a TreeMap Ok I think now I understood your question, you want to sort by comparing values in the hashMap. You have to write code to do this, if you want to do it once you can sort the values of your hashMap:
If you want to access this sorted list often, then you should insert your elements in the hashMap AND in a sorted Set (TreeSet for example)... |
||||
|
|
Seems like you might want a treemap. http://java.sun.com/j2se/1.4.2/docs/api/java/util/TreeMap.html You can pass in a custom comparator to it if that applies. |
|||
|
|
|
http://snipplr.com/view/2789/sorting-map-keys-by-comparing-its-values/ get the keys
Sort them Collections.sort print them. In any case, you can't have sorted values in HashMap [ Acc to API 'This class makes no guarantees as to the order of the map; in particular, it does not guarantee that the order will remain constant over time' ]. Though you can push all these sorted value to LinkedhashMap, for later use as well. |
||||
|
|
|
Without any more information, it's hard to know exactly what you want. However, when choosing what data structure to use, you need to take into account what you need it for. Hashmaps are not designed for sorting - they are designed for easy retrieval. So in your case, you'd probably have to extract each element from the hashmap, and put them into a data structure more conducive to sorting, such as a heap or a set, and then sort them there. |
|||||||||||
|
|
If you want to combine a Map for efficient retrieval with a SortedMap, you may use the ConcurrentSkipListMap. Of course, you need the key to be the value used for sorting. |
|||
|
|
There was an interview questions where i was asked to sort according to age and then by name something we do in sql (order by age,name) Thought of sharing the answer. Is there any way if this can be optimised ? |
|||
|
|
|
Sorted List by hasmap keys:
Sorted List by hashmap values:
Good Luck! |
||||
|
|
|
You can use Guava to do it:
|
|||
|
|
|
This might be what you are looking for. It shows how to use TreeMap and a custom Comparator to get the work done. |
|||
|
|
|
Have a look at this http://www.lampos.net/how-to-sort-hashmap |
|||
|
|