Eu tenho um mapa Map<K, V>
e meu objetivo é remover os valores duplicados e gerar a mesma estrutura Map<K, V>
novamente. Caso o valor duplicado for encontrado, deve ser selecionada uma chave ( k
) das duas teclas ( k1
e k1
) que detêm esses valores, por isso, assumir a BinaryOperator<K>
dar k
a partir k1
e k2
está disponível.
Exemplo de entrada e saída:
// Input
Map<Integer, String> map = new HashMap<>();
map.put(1, "apple");
map.put(5, "apple");
map.put(4, "orange");
map.put(3, "apple");
map.put(2, "orange");
// Output: {5=apple, 4=orange} // the key is the largest possible
Minha tentativa de usar Stream::collect(Supplier, BiConsumer, BiConsumer)
é um pouco desajeitada e contém operações mutáveis como Map::put
e Map::remove
que eu gostaria de evitar:
// // the key is the largest integer possible (following the example above)
final BinaryOperator<K> reducingKeysBinaryOperator = (k1, k2) -> k1 > k2 ? k1 : k2;
Map<K, V> distinctValuesMap = map.entrySet().stream().collect(
HashMap::new, // A new map to return (supplier)
(map, entry) -> { // Accumulator
final K key = entry.getKey();
final V value = entry.getValue();
final Entry<K, V> editedEntry = Optional.of(map) // New edited Value
.filter(HashMap::isEmpty)
.map(m -> new SimpleEntry<>(key, value)) // If a first entry, use it
.orElseGet(() -> map.entrySet() // otherwise check for a duplicate
.stream()
.filter(e -> value.equals(e.getValue()))
.findFirst()
.map(e -> new SimpleEntry<>( // .. if found, replace
reducingKeysBinaryOperator.apply(e.getKey(), key),
map.remove(e.getKey())))
.orElse(new SimpleEntry<>(key, value))); // .. or else leave
map.put(editedEntry.getKey(), editedEntry.getValue()); // put it to the map
},
(m1, m2) -> {} // Combiner
);
Existe uma solução usando uma combinação apropriada de Collectors
dentro de uma Stream::collect
chamada (por exemplo, sem operações mutáveis)?
Map::put
ou Map::remove
dentro do Collector
.
BiMap
. Possivelmente uma duplicata de Remover valores duplicados do HashMap em Java
Stream
s?