我有地图Map<Type, Long> countByType
,我希望有一个列表,它按相应的值排序(最小到最大)键。我的尝试是:
countByType.entrySet().stream().sorted().collect(Collectors.toList());
然而,这只是给我一个条目列表,如何在不丢失订单的情况下获取类型列表?
答案 0 :(得分:111)
您说您希望按值排序,但您的代码中没有。将lambda(或方法引用)传递给sorted
,告诉它你想如何排序。
你想得到钥匙;使用map
将条目转换为键。
List<Type> types = countByType.entrySet().stream()
.sorted(Comparator.comparing(Map.Entry::getValue))
.map(Map.Entry::getKey)
.collect(Collectors.toList());
答案 1 :(得分:11)
您必须根据条目的值对自定义比较器进行排序。然后在收集之前选择所有密钥
countByType.entrySet()
.stream()
.sorted((e1, e2) -> e1.getValue().compareTo(e2.getValue())) // custom Comparator
.map(e -> e.getKey())
.collect(Collectors.toList());
答案 2 :(得分:3)
您可以按照下面的值对地图进行排序,更多示例here
//Sort a Map by their Value.
Map<Integer, String> random = new HashMap<Integer, String>();
random.put(1,"z");
random.put(6,"k");
random.put(5,"a");
random.put(3,"f");
random.put(9,"c");
Map<Integer, String> sortedMap =
random.entrySet().stream()
.sorted(Map.Entry.comparingByValue())
.collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue,
(e1, e2) -> e2, LinkedHashMap::new));
System.out.println("Sorted Map: " + Arrays.toString(sortedMap.entrySet().toArray()));
答案 3 :(得分:2)
Map<Integer, String> map = new HashMap<>();
map.put(1, "B");
map.put(2, "C");
map.put(3, "D");
map.put(4, "A");
List<String> list = map.values().stream()
.sorted()
.collect(Collectors.toList());
输出:[A, B, C, D]
答案 4 :(得分:1)
以下是StreamEx
的简单解决方案EntryStream.of(countByType).sortedBy(e -> e.getValue()).keys().toList();
答案 5 :(得分:1)
您可以将此作为问题的示例
Map<Integer, String> map = new HashMap<>();
map.put(10, "apple");
map.put(20, "orange");
map.put(30, "banana");
map.put(40, "watermelon");
map.put(50, "dragonfruit");
// split a map into 2 List
List<Integer> resultSortedKey = new ArrayList<>();
List<String> resultValues = map.entrySet().stream()
//sort a Map by key and stored in resultSortedKey
.sorted(Map.Entry.<Integer, String>comparingByKey().reversed())
.peek(e -> resultSortedKey.add(e.getKey()))
.map(x -> x.getValue())
// filter banana and return it to resultValues
.filter(x -> !"banana".equalsIgnoreCase(x))
.collect(Collectors.toList());
resultSortedKey.forEach(System.out::println);
resultValues.forEach(System.out::println);