gpt4 book ai didi

java - 如何像在 python 中那样使用 Lambda 对 Java 中的 List 值进行分组

转载 作者:太空宇宙 更新时间:2023-11-04 13:11:35 24 4
gpt4 key购买 nike

我想根据键对映射的值进行分组。让我们说

Map<String,Integer> map1 = new TreeMap<String,Integer>();
map1.put("D", 3);
map1.put("B", 2);
map1.put("C", 1);

Map<String,Integer> map2 = new TreeMap<String,Integer>();
map2.put("A", 13);
map2.put("B", 22);
map2.put("C", 12);

Map<String,Integer> map3 = new TreeMap<String,Integer>();
map3.put("A", 33);
map3.put("B", 32);
map3.put("C", 32);

Map<Integer,Map<String,Integer>> map = new HashMap <Integer,Map<String,Integer>>();

map.put(1,map1);
map.put( 2, map2);
map.put(3, map3);
System.out.println(map);

我想根据键对映射中的值进行分组:输出应为 ["A","B","C"]:[2,3], ["D","B","C"]:[1]

所以我做了什么:

Map<List<String>, List<Integer>> newMap = new HashMap<List<String>, List<Integer>>();

for (Integer item : map) {
Map<String,Integer> currentValue = map.get(item);
List<String> oldItemKeySet = newMap.get(currentValue.keySet());
newMap.put(currentValue.keySet(), (oldItemKeySet == null) ? 1 : oldItemKeySet.put());
}

但是没有成功,有人可以帮忙吗?

PS:在Python中,这些事情可以通过itertools.groupbyreduce来完成,但我仍然不知道如何在Java中完美地做到这一点

最佳答案

如果我理解得很好,您希望将在与原始键关联的最后一个映射中添加的映射的相同键集进行分组。

import static java.util.stream.Collectors.groupingBy;
import static java.util.stream.Collectors.mapping;
import static java.util.stream.Collectors.toList;

...

Map<Set<String>, List<Integer>> newMap =
map.entrySet()
.stream()
.collect(groupingBy(e -> e.getValue().keySet(),
mapping(Map.Entry::getKey, toList())));

从最后一张 map 中,您可以获得条目流(即 Stream<Entry<Integer, Map<String, Integer>> )。在那里,您可以根据映射值的键集对条目进行分组。

然后,您使用下游收集器映射结果映射的值,该收集器收集 List<Integer> 中原始条目的键。 .

输出:

{[A, B, C]=[2, 3], [B, C, D]=[1]}

关于java - 如何像在 python 中那样使用 Lambda 对 Java 中的 List 值进行分组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33900057/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com