これで変換が行われます。コードは長く複雑に見えますが、全体的な複雑さは依然として O(n) です。すべてのキーと値は、マップのサイズに関係なく一定回数触れられます。
public static void main(final String[] args) {
Map<String, String> map = getMap();
Map<String, String[]> map2 = new TreeMap<>();
// (1) Read the map into an intermediate map and
// get the number of rows needed
int maxSize = 0;
for (Map.Entry<String, String> entry : map.entrySet()) {
String[] array = entry.getValue().split(",");
maxSize = array.length > maxSize ? array.length : maxSize;
map2.put(entry.getKey(), array);
}
// (2) prepare the table structure
List<List<String>> table = new ArrayList<>();
for (int i = 0; i < (maxSize + 1); i++) {
table.add(new ArrayList<String>());
}
// (3) read the values into the table structure
for (Map.Entry<String, String[]> entry : map2.entrySet()) {
table.get(0).add(entry.getKey());
for (int i = 0; i < maxSize; i++) {
if (i < entry.getValue().length) {
table.get(i + 1).add(entry.getValue()[i]);
} else {
table.get(i + 1).add("");
}
}
}
// (4) dump the table
for (List<String> row : table) {
StringBuilder rowBuilder = new StringBuilder();
boolean isFirst = true;
for (String value : row) {
if (isFirst) {
isFirst = false;
} else {
rowBuilder.append('|');
}
rowBuilder.append(value);
}
System.out.println(rowBuilder.toString());
}
}
private static Map<String, String> getMap() {
Map<String, String> map = new TreeMap<>();
map.put("key1", "1,2,3,4");
map.put("key2", "5,6");
map.put("key3", "7,8,9");
return map;
}
このサンプルの結果は次のとおりです。
key1|key2|key3
1|5|7
2|6|8
3||9
4||
(間違った推測に基づく最初の回答)
5 と 6 がキー1 と 2 の値であると仮定すると、これは適切な解決策です。
public static void dumpMap(Map<String, String> map) {
for (Map.Entry<String, String> entry:map.entrySet()) {
System.out.printf("%s|%s%n", entry.getKey(), nullSafe(entry.getValue()));
}
}
private static String nullSafe(String value) {
return value == null ? "" : value;
}
これは O(n) であり、出力するためにすべてのキーと値のペアに一度アクセスする必要があるため、これ以上効率的に行うことはできません。
(並列コンピューティングを使用できない限り;))