Ich habe eine Karte Map<K, V>
und mein Ziel ist es, die doppelten Werte zu entfernen und dieselbe Struktur Map<K, V>
erneut auszugeben . Falls der doppelte Wert gefunden wird, muss k
aus den beiden Schlüsseln ( k1
und k1
), die diese Werte enthalten, ein Schlüssel ( ) ausgewählt werden. Aus diesem Grund wird davon ausgegangen, dass das BinaryOperator<K>
Geben k
von k1
und k2
verfügbar ist.
Beispiel für Ein- und Ausgabe:
// 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
Mein Versuch, etwas zu verwenden, Stream::collect(Supplier, BiConsumer, BiConsumer)
ist etwas sehr ungeschickt und enthält veränderbare Operationen wie Map::put
und, Map::remove
die ich vermeiden möchte:
// // 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
);
Gibt es eine Lösung mit einer geeigneten Kombination Collectors
innerhalb eines Stream::collect
Anrufs (z. B. ohne veränderbare Operationen)?
Map::put
oder Map::remove
innerhalb der Collector
.
BiMap
. Möglicherweise ein Duplikat von Doppelte Werte aus HashMap in Java entfernen
Stream
s gemacht werden?