I have a Map where key is a String and value is comma seperated list of values.
How can I reverse the ordering of the key/value pairs and assign to new Map so that keys become values and the values become keys
So :
key value key1 value1,value2,value3 key2 value1,value4,value5 key3 value4,value2,value1
becomes :
key value value1 key1,key2,key3 value2 key1,key3 value3 key1 value4 key2,key3 value5 key2
A possible solution is to iterate over each value and then iterate of every key
searching for same corresponding value. If found add this new key/value pair to a new Map.
This seems inefficient ?
Solution (implemented using accepted answer) :
import java.util.HashMap;
import java.util.Map;
public class MapTransformer {
public static void main(String args[]) {
Map<String, String> m1 = new HashMap<String, String>();
m1.put("key1", "value1,value2");
m1.put("key2", "value5");
m1.put("key3", "value4,value2,value1");
Map<String, String> inverseMap = new HashMap<String, String>();
for (Map.Entry<String, String> entry : m1.entrySet()) {
for (String value : entry.getValue().split(",")) {
if (inverseMap.containsKey(value))
inverseMap.put(value, inverseMap.get(value) + "," + entry.getKey());
else
inverseMap.put(value, entry.getKey());
}
}
for (Map.Entry<String, String> entry : inverseMap.entrySet()) {
String key = entry.getKey();
String value = entry.getValue();
System.out.println(key+" "+value);
}
}
}
Note that this does not sort the strings in the inverse map. To do that you then do a second iteration through the inverse map splitting and rejoining the strings.
A better solution is to model the data as a
SortedMap<String,SortedSet<String>>