Tôi có một bản đồ Map<K, V>
và mục tiêu của tôi là loại bỏ các giá trị trùng lặp và xuất Map<K, V>
lại cấu trúc rất giống nhau . Trong trường hợp giá trị trùng lặp được tìm thấy, có phải được lựa chọn một chìa khóa ( k
) từ hai phím ( k1
và k1
) mà giữ những giá trị này, vì lý do này, giả định BinaryOperator<K>
đưa ra k
từ k1
và k2
có sẵn.
Ví dụ đầu vào và đầu ra:
// 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
Nỗ lực của tôi sử dụng Stream::collect(Supplier, BiConsumer, BiConsumer)
là một chút rất vụng về và chứa các hoạt động có thể thay đổi như Map::put
và Map::remove
tôi muốn tránh:
// // 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
);
Có giải pháp nào sử dụng kết hợp thích hợp Collectors
trong một Stream::collect
cuộc gọi (ví dụ: không có hoạt động có thể thay đổi) không?
Map::put
hay Map::remove
trong Collector
.
BiMap
. Có thể là một bản sao của Xóa các giá trị trùng lặp khỏi HashMap trong Java
Stream
s?