HashMap을 값으로 정렬
문제:
HashMap을 저장된 값에 따라 정렬하는 방법 그 안에 키가 다음과 같이 자동으로 정렬되도록 합니다. 음?
해결책:
일반 메서드(Java 8 이전):
일반 메서드를 구현하여 지도:
private static <K extends Comparable<K>, V extends Comparable<V>> Map<K, V> sort( final Map<K, V> unsorted, final boolean order) { final var list = new LinkedList<>(unsorted.entrySet()); list.sort((o1, o2) -> order ? o1.getValue().compareTo(o2.getValue()) == 0 ? o1.getKey().compareTo(o2.getKey()) : o1.getValue().compareTo(o2.getValue()) : o2.getValue().compareTo(o1.getValue()) == 0 ? o2.getKey().compareTo(o1.getKey()) : o2.getValue().compareTo(o1.getValue())); return list.stream().collect( Collectors.toMap( Entry::getKey, Entry::getValue, (a, b) -> b, LinkedHashMap::new ) ); }
사용 방법 오름차순 및 내림차순:
import java.util.HashMap; import java.util.Map; public class SortMapByValue { public static final boolean ASC = true; public static final boolean DESC = false; public static void main(String[] args) { // Create an unsorted map Map<String, Integer> unsortMap = new HashMap<>(); unsortMap.put("B", 55); unsortMap.put("A", 80); unsortMap.put("D", 20); unsortMap.put("C", 70); // Sort in ascending order Map<String, Integer> sortedMapAsc = sort(unsortMap, ASC); // Sort in descending order Map<String, Integer> sortedMapDesc = sort(unsortMap, DESC); } }
최신 Java 8 이상 기능:
또는 Java 8 람다 표현식을 사용하는 보다 간결한 솔루션:
import java.util.*; import java.util.Map.Entry; import java.util.stream.Collectors; public class SortMapByValue { ... private static Map<String, Integer> sortByValue(Map<String, Integer> unsortMap, final boolean order) { List<Entry<String, Integer>> list = new LinkedList<>(unsortMap.entrySet()); list.sort((o1, o2) -> order ? o1.getValue().compareTo(o2.getValue()) == 0 ? o1.getKey().compareTo(o2.getKey()) : o1.getValue().compareTo(o2.getValue()) : o2.getValue().compareTo(o1.getValue()) == 0 ? o2.getKey().compareTo(o1.getKey()) : o2.getValue().compareTo(o1.getValue())); return list.stream().collect(Collectors.toMap(Entry::getKey, Entry::getValue, (a, b) -> b, LinkedHashMap::new)); } ... }
위 내용은 HashMap을 값별로 정렬하고 키 순서를 유지하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!