假设我有 hashmap 存储,它包含例如-(11,name1) (11,name2),我调用 HashMap.get(11),它只显示 name2,这意味着它覆盖了 11 的第一个输入。我如何存储ID 11 的 name1 和 name2 都使用 hashmap?我知道我可以同时使用 HashMap 和 HashSet,但我不想为 HashMap 创建每个 HashSet。我只想使用 hashSet 。我该怎么做?我希望你能帮助我。谢谢你。
public void insert(int ID, String key){
int hashKey = Hash(key);
System.out.println("Hash Key" + hashKey);
int node = Find(ID,hashKey);
storeR.put(node, key);
}