私はマップを持ってMap<K, V>
おり、私の目標は重複した値を削除して、まったく同じ構造をMap<K, V>
再び出力することです。重複値が見つかった場合には、一つのキー(が選択されなければならないk
二つの鍵(から)k1
とk1
、これらの値を保持する)、このため、想定BinaryOperator<K>
を与えるk
からk1
とk2
入手可能です。
入力と出力の例:
// 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
使用して私の試みはStream::collect(Supplier, BiConsumer, BiConsumer)
あるビット非常に不器用とのような変更可能な操作が含まMap::put
とMap::remove
私は避けたいたの。
// // 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
);
Collectors
1つのStream::collect
呼び出し内で適切な組み合わせを使用する解決策はありますか(たとえば、変更可能な操作なし)?
Map::put
またはMap::remove
内Collector
。
BiMap
。おそらく、JavaのHashMapから重複する値
Stream
S を介して実行する必要がありますか?