3 回答
TA贡献1784条经验 获得超9个赞
使用 java-8,您可以在一行中使用以下所有内容:
Map<String, List<Integer>> collect1 = Arrays.stream(students).collect(Collectors.groupingBy(arr -> arr[0], Collectors.mapping(arr -> Integer.parseInt(arr[1]), Collectors.toList())));
在这里,我们按学生姓名的第 0 个索引分组,第 1 个索引将保存学生的分数。
TA贡献1946条经验 获得超3个赞
您需要区分已经存在的和新的数组:
List<Integer> currScore = map.get(students[i][0])
if (currScore != null) {
currScore.add(students[i][1]);
} else {
List<Integer> newScore = new ArrayList<>();
newScore.add(students[i][1]);
map.put(students[i][0], newScore);
}
还将变量名称更改为有意义的名称
TA贡献1817条经验 获得超6个赞
String[][] students = { { "Bobby", "87" }, { "Charles", "100" }, { "Eric", "64" }, { "Charles", "22" } };
Map<String, List<Integer>> map = new HashMap<>();
Stream.of(students).forEach(student -> map.computeIfAbsent(student[0], s -> new ArrayList<>()).add(Integer.parseInt(student[1])));
添加回答
举报