У мене є карта, 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
межах одного Stream::collect
дзвінка (наприклад, без змінних операцій)?
Map::put
або в Map::remove
межах Collector
.
BiMap
. Можливо, дублікат Видалити повторювані значення з HashMap на Яві
Stream
s?