web-dev-qa-db-fra.com

Trier la carte par valeur en utilisant des lambdas et des ruisseaux

Je suis nouveau dans Java 8, je ne sais pas comment utiliser les flux ni ses méthodes de tri. Si j'ai mappé comme ci-dessous, comment trier cette carte par valeur pour ne prendre que les 10 premières entrées à l'aide de Java 8.

HashMap<String, Integer> map = new HashMap<String, Integer>();
        map.put("a", 10);
        map.put("b", 30);
        map.put("c", 50);
        map.put("d", 40);
        map.put("e", 100);
        map.put("f", 60);
        map.put("g", 110);
        map.put("h", 50);
        map.put("i", 90);
        map.put("k", 70);
        map.put("L", 80);

Je sais auparavant Java 8, nous pouvons trier comme ce lien: https://stackoverflow.com/a/109389/4315608

36

Vous pouvez toujours commencer à lire les documentation et certainstutoriels .

map.entrySet().stream()
        .sorted(Map.Entry.<String, Integer>comparingByValue().reversed()) 
        .limit(10) 
        .forEach(System.out::println); // or any other terminal method

Référence

http://www.leveluplunch.com/Java/examples/sort-order-map-by-values/

74
ericbn

Voir le fil conducteur de la pile ici et exemple ici

Map<String,Person> map = new HashMap<>();
map.put("g",new Person(5, "EE", 51, Person.SEX.FEMALE, "A"));
map.put("a",new Person(4, "DD", 25, Person.SEX.MALE, "D"));
map.put("e",new Person(3, "CC", 44, Person.SEX.FEMALE,"B"));

Map<String,Person> sortedNewMap = map.entrySet().stream().sorted((e1,e2)->
        e1.getValue().getLocation().compareTo(e2.getValue().getLocation()))
        .collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue,
                (e1, e2) -> e1, LinkedHashMap::new));
sortedNewMap.forEach((key,val)->{
    System.out.println(key+ " = "+ val.toString());
});
8
Ajay Kumar
List<Map.Entry<String, Integer>> entries = newArrayList(map.entrySet());
Collections.sort(entries, (o1, o2) -> o1.getValue().compareTo(o2.getValue()));
List<Map.Entry<String, Integer>> top10 = entries.subList(0, Math.min(entries.size(), 10));
2
pomo

Si vous voulez trier par valeur entière ou float de l'objet value

Map<String,Person> map = new HashMap<>();
map.put("g",new Person(5, "EE", 51, Person.SEX.FEMALE, "A"));
map.put("a",new Person(4, "DD", 25, Person.SEX.MALE, "D"));
map.put("e",new Person(3, "CC", 44, Person.SEX.FEMALE,"B"));

Vous pouvez utiliser,

Map<String,Person> sortedNewMap = map.entrySet().stream().sorted((e1,e2)->
        Integer.compare(e1.getValue().getAge(), e2.getValue().getAge()))
        .collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue,
                (e1, e2) -> e1, LinkedHashMap::new));
2
Nycrera