Flask接口签名sign原理与实例代码浅析
839
2022-11-17
Java TreeMap升序|降序排列和按照value进行排序的案例
TreeMap 升序|降序排列
import java.util.Comparator;
import java.util.TreeMap;
public class Main {
public static void main(String[] args) {
TreeMap
TreeMap
/*
* int compare(Object o1, Object o2) 返回一个基本类型的整型,
* 返回负数表示:o1 小于o2,
* 返回0 表示:o1和o2相等,
* 返回正数表示:o1大于o2。
*/
public int compare(Integer a,Integer b){
return b-a;
}
});
map2.put(1,2);
map2.put(2,4);
map2.put(7, 1);
map2.put(5,2);
System.out.println("Map2="+map2);
map1.put(1,2);
map1.put(2,4);
map1.put(7, 1);
map1.put(5,2);
System.out.println("map1="+map1);
}
}
TreeMap按照value进行排序
TreeMap底层是根据红黑树的数据结构构建的,默认是根据key的自然排序来组织(比如integer的大小,String的字典排序)。所以,TreeMap只能根据key来排序,是不能根据value来排序的(否则key来排序根本就不能形成TreeMap)。
今天有个需求,就是要根据treeMap中的value排序。所以网上看了一下,大致的思路是把TrStoAJGdsqxeeMap的EntrySet转换成list,然后使用Collections.sor排序。
代码:
public static void sortByValue() {
Map
map.put("a", "dddd");
map.put("d", "aaaa");
map.put("b", "cccc");
map.put("c", "bbbb");
List
Collections.sort(list,new Comparator
//升序排序
public int compare(Entry
return o1.getValue().compareTo(o2.getValue());
}
});
for (Entry
System.out.println(e.getKey()+":"+e.getValue());
}
}
补充知识:使用比较器对Treemap按照value进行排序
使用比较器对Treemap按照value进行排序(value值只有是string类型时才适用)
有时我们需要根据TreeMap的value来进行排序。对value排序我们就需要借助于Collections的sort(List list, Comparator
public class MapSortDemo {
public static void main(String[] args) {
Map
map.put("KFC", "kfc");
map.put("WNBA", "wnba");
map.put("NBA", "nba");
map.put("CBA", "cba");
Map
// Map
for (Map.Entry
System.out.println(entry.getKey() + " " + entry.getValue());
}
}
/**
* 使用 Map按value进行排序
* @param map
* @return
*/
public static Map
if (oriMap == null || oriMap.isEmpty()) {
return null;
}
Map
List
oriMap.entrySet());
Collections.sort(entryList, new MapValueComparator());
Iterator
Map.Entry
while (iter.hasNext()) {
tmpEntry = iter.next();
sortedMap.put(tmpEntry.getKey(), tmpEntry.getValue());
}
return sortedMap;
}
}
//比较器
class MapValueComparator implements Comparator
@Override
public int compare(Entry
return me1.getValue().compareTo(me2.getValue());
}
}
方式二
public class TreeMapTest {
public static void main(String[] args) {
Map
map.put("a", "ddddd");
map.put("c", "bbbbb");
map.put("d", "aaaaa");
map.put("b", "ccccc");
//这里将map.entrySet()转换成list
List
//然后通过比较器来实现排序
Collections.sort(list,new Comparator
//升序排序
public int compare(Entry
Entry
return o1.getValue().compareTo(o2.getValue());
}
});
for(Map.Entry
System.out.println(mapping.getKey()+":"+mapping.getValue());
}
}
}
运行结果如下:
d:aaaaa
c:bbbbb
b:ccccc
a:ddddd
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~