The map implementation is sorted by value in ascending order _java

Source: Internet
Author: User
Tags set set

Copy Code code as follows:

/**
* @param h
* @return
* Implementation of the map sorted by value Ascending
*/
@SuppressWarnings ("Unchecked")
public static map.entry[] Getsortedhashtablebyvalue (Map h) {
Set set = H.entryset ();
map.entry[] entries = (map.entry[]) Set.toarray (new Map.entry[set
. Size ()]);
Arrays.sort (entries, new Comparator () {
public int Compare (object arg0, object arg1) {
Long Key1 = long.valueof ((map.entry) arg0). GetValue (). toString ());
Long Key2 = long.valueof ((map.entry) arg1). GetValue (). toString ());
Return Key1.compareto (Key2);
}
});

return entries;
}

/**
* @param h
* @return
* Implement to sort the map by key
*/
@SuppressWarnings ("Unchecked")
public static map.entry[] Getsortedhashtablebykey (Map h) {

Set set = H.entryset ();

map.entry[] entries = (map.entry[]) Set.toarray (new Map.entry[set
. Size ()]);

Arrays.sort (entries, new Comparator () {
public int Compare (object arg0, object arg1) {
Object Key1 = ((map.entry) arg0). Getkey ();
Object Key2 = ((map.entry) arg1). Getkey ();
Return ((comparable) key1). CompareTo (Key2);
}

});

return entries;
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.