gpt4 book ai didi

java - 如何将具有相同值的多个键插入到 Java 中的 HashMap 中?

转载 作者:行者123 更新时间:2023-11-29 06:50:45 27 4
gpt4 key购买 nike

我正在用 java 进行以下编码挑战:

/**
* 4. Given a word, compute the scrabble score for that word.
*
* --Letter Values-- Letter Value A, E, I, O, U, L, N, R, S, T = 1; D, G = 2; B,
* C, M, P = 3; F, H, V, W, Y = 4; K = 5; J, X = 8; Q, Z = 10; Examples
* "cabbage" should be scored as worth 14 points:
*
* 3 points for C, 1 point for A, twice 3 points for B, twice 2 points for G, 1
* point for E And to total:
*
* 3 + 2*1 + 2*3 + 2 + 1 = 3 + 2 + 6 + 3 = 5 + 9 = 14
*
* @param string
* @return
*/

我的想法是通过执行以下操作将所有这些字母插入 HashMap 中:

map.add({A,,E,I,O,U,L,N,R,S,T}, 1);

有没有办法在 java 中做到这一点?

最佳答案

您在评论中说过,您希望能够在一个语句中添加所有这些条目。虽然 Java 不是一种在单个语句中执行此类操作的好语言,但如果您真的下定决心这样做,它是可以完成的。例如:

Map<Character, Integer> scores =
Stream.of("AEIOULNRST=1","DG=2","BCMP=3","FHVWY=4" /* etc */ )
.flatMap(line -> line.split("=")[0].chars().mapToObj(c -> new Pair<>((char)c, Integer.parseInt(line.split("=")[1]))))
.collect(Collectors.toMap(Pair::getKey, Pair::getValue));

System.out.println("C = " + scores.get('C'));

输出:

C = 3

在上面的代码中,我首先构建了一个包含所有条目(作为对)的流,并将它们收集到一个映射中。

注意:

我上面使用的 Pair 类来自 javafx.util.Pair。但是,您可以轻松地使用 AbstractMap.SimpleEntry、您自己的 Pair 类或任何能够容纳两个对象的集合数据类型。


更好的方法

另一个想法是编写您自己的辅助方法。这个方法可以放在一个包含类似辅助方法的类中。这种方法会更惯用,更易于阅读,因此更易于维护。

public enum MapHelper {
; // Utility class for working with maps
public static <K,V> void multiKeyPut(Map<? super K,? super V> map, K[] keys, V value) {
for(K key : keys) {
map.put(key, value);
}}}

然后你会像这样使用它:

Map<Character, Integer> scores = new HashMap<>();
MapHelper.multiKeyPut(scores, new Character[]{'A','E','I','O','U','L','N','R','S','T'}, 1);
MapHelper.multiKeyPut(scores, new Character[]{'D','G'}, 2);
MapHelper.multiKeyPut(scores, new Character[]{'B','C','M','P'}, 3);
/* etc */

关于java - 如何将具有相同值的多个键插入到 Java 中的 HashMap 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49086563/

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