我需要建立逆映射 - 选择唯一值,并为他们找到钥匙。 看来,唯一的办法就是遍历所有的键/值对,因为返回的entrySet所以价值不是唯一的设定? 谢谢。
Answer 1:
在地图中的值可能不是唯一的。 但是,如果他们(你的情况),你可以做你在你的问题中写道,并创建一个通用的方法将其转换:
private static <V, K> Map<V, K> invert(Map<K, V> map) {
Map<V, K> inv = new HashMap<V, K>();
for (Entry<K, V> entry : map.entrySet())
inv.put(entry.getValue(), entry.getKey());
return inv;
}
Java的8:
public static <V, K> Map<V, K> invert(Map<K, V> map) {
return map.entrySet()
.stream()
.collect(Collectors.toMap(Entry::getValue, Entry::getKey));
}
使用示例:
public static void main(String[] args) {
Map<String, Integer> map = new HashMap<String, Integer>();
map.put("Hello", 0);
map.put("World!", 1);
Map<Integer, String> inv = invert(map);
System.out.println(inv); // outputs something like "{0=Hello, 1=World!}"
}
附注:该put(.., ..)
方法将返回“旧”价值的关键。 如果不为空,你可以抛出一个new IllegalArgumentException("Map values must be unique")
或类似的东西。
Answer 2:
看看谷歌番石榴BIMAP 。
用法示例
Map<Integer, String> map = new HashMap<>();
map.put(1, "one");
map.put(2, "two");
Map<String, Integer> inverted = HashBiMap.create(map).inverse();
Answer 3:
为了获得在Java 8定地图的反转形式:
public static <K, V> Map<V, K> inverseMap(Map<K, V> sourceMap) {
return sourceMap.entrySet().stream().collect(
Collectors.toMap(Entry::getValue, Entry::getKey,
(a, b) -> a) //if sourceMap has duplicate values, keep only first
);
}
用法示例
Map<Integer, String> map = new HashMap<Integer, String>();
map.put(1, "one");
map.put(2, "two");
Map<String, Integer> inverted = inverseMap(map);
Answer 4:
看来,唯一的办法就是遍历所有的键/值对,因为返回的entrySet所以价值不是唯一的设定?
它至少一种方式。 下面是一个例子:
Map<Integer, String> map = new HashMap<Integer, String>();
map.put(1, "one");
map.put(2, "two");
Map<String, Integer> inverted = new HashMap<String, Integer>();
for (Integer i : map.keySet())
inverted.put(map.get(i), i);
在非唯一值的情况下,这种算法将映射发现这是关键的最后一个值。 (由于迭代顺序是未定义大多数地图,这应该是任何解决方案一样好。)
如果你确实想保留找到每个键的第一个值,你可以将其更改为
if (!inverted.containsKey(map.get(i)))
inverted.put(map.get(i), i);
Answer 5:
我想给另一种方法对这个问题给出一个额外的维度:在重复的entrySet 值 。
public static void main(String[] args) {
HashMap<Integer, String> s = new HashMap<Integer, String>();
s.put(1, "Value1");
s.put(2, "Value2");
s.put(3, "Value2");
s.put(4, "Value1");
/*
* swap goes here
*/
HashMap<String,List<Integer>> newMap = new HashMap<String, List<Integer>>();
for (Map.Entry<Integer, String> en : s.entrySet()) {
System.out.println(en.getKey() + " " + en.getValue());
if(newMap.containsKey(en.getValue())){
newMap.get(en.getValue()).add(en.getKey());
} else {
List<Integer> tmpList = new ArrayList<Integer>();
tmpList.add(en.getKey());
newMap.put(en.getValue(), tmpList);
}
}
for(Map.Entry<String, List<Integer>> entry: newMap.entrySet()){
System.out.println(entry.getKey() + " " + entry.getValue());
}
}
牛逼的结果将是:
1值1
2值2
3值2
4值1
值1 [1,4]
值2 [2,3]
Answer 6:
Apache的百科全书类别还提供了一种BidiMap
用于双向映射接口,与几个实施方式中沿。
BidiMap的JavaDoc
Answer 7:
你必须假设值可以是相同的,因为地图合同允许它。
在我看来,最好的解决办法在于使用的包装。 它将包含原始值,并添加一个id。 它的hashCode()函数将依托ID和你提供的原始值的消气。 代码将是这样的:
public class MapKey
{
/**
* A new ID to differentiate equal values
*/
private int _id;
/**
* The original value now used as key
*/
private String _originalValue;
public MapKey(String originalValue)
{
_originalValue = originalValue;
//assuming some method for generating ids...
_id = getNextId();
}
public String getOriginalValue()
{
return _originalValue;
}
@Override
public int hashCode()
{
final int prime = 31;
int result = 1;
result = prime * result + _id;
return result;
}
@Override
public boolean equals(Object obj)
{
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
MapKey other = (MapKey) obj;
if (_id != other._id)
return false;
return true;
}
@Override
public String toString()
{
StringBuilder sb = new StringBuilder();
sb.append("MapKey value is ");
sb.append(_originalValue);
sb.append(" with ID number ");
sb.append(_id);
return sb.toString();
}
翻转地图将是这样的:
public Map <MapKey, Integer> invertMap(Map <Integer, String> map)
{
Map <MapKey, Integer> invertedMap = new HashMap <MapKey, Integer>();
Iterator<Entry<Integer, String>> it = map.entrySet().iterator();
while(it.hasNext())
{
//getting the old values (to be reversed)
Entry<Integer, String> entry = it.next();
Integer oldKey = entry.getKey();
String oldValue = entry.getValue();
//creating the new MapKey
MapKey newMapKey = new MapKey(oldValue);
invertedMap.put(newMapKey, oldKey);
}
return invertedMap;
}
打印值是这样的:
for(MapKey key : invertedMap.keySet())
{
System.out.println(key.toString() + " has a new value of " + invertedMap.get(key));
}
这段代码没有进行测试,但我相信这是最好的解决方案,因为它利用面向对象设计的继承,而不是“C”式检查,并允许您显示所有原始键和值。
Answer 8:
随着番石榴
Multimaps.transformValues(Multimaps.index(map.entrySet(), Map.Entry::getValue),
Map.Entry::getKey)
你会得到回报多重映射(基本地图列表)。