102

この質問にはすでに答えがあります。

並べ替える必要がありますHashMapそれに格納されている値に従って。のHashMap電話に保存されている連絡先名が含まれています。

また、値をソートするとすぐにキーが自動的にソートされるようにする必要があります。または、キーと値が結合されているため、値の変更がキーに反映されるはずです。

HashMap<Integer,String> map = new HashMap<Integer,String>();
map.put(1,"froyo");
map.put(2,"abby");
map.put(3,"denver");
map.put(4,"frost");
map.put(5,"daisy");

必要な出力:

2,abby;
5,daisy;
3,denver;
4,frost;
1,froyo;

12 답변


72

Javaを想定すると、ハッシュマップを次のようにソートできます。

public LinkedHashMap<Integer, String> sortHashMapByValues(
        HashMap<Integer, String> passedMap) {
    List<Integer> mapKeys = new ArrayList<>(passedMap.keySet());
    List<String> mapValues = new ArrayList<>(passedMap.values());
    Collections.sort(mapValues);
    Collections.sort(mapKeys);

    LinkedHashMap<Integer, String> sortedMap =
        new LinkedHashMap<>();

    Iterator<String> valueIt = mapValues.iterator();
    while (valueIt.hasNext()) {
        String val = valueIt.next();
        Iterator<Integer> keyIt = mapKeys.iterator();

        while (keyIt.hasNext()) {
            Integer key = keyIt.next();
            String comp1 = passedMap.get(key);
            String comp2 = val;

            if (comp1.equals(comp2)) {
                keyIt.remove();
                sortedMap.put(key, val);
                break;
            }
        }
    }
    return sortedMap;
}

キックオフの一例です。この方法はHashMapをソートし、重複する値も保持するため、より便利です。


  • collections.sort(mapvalues)が問題を解決するとは思わない。 - prof_jack
  • このコードはキーに従ってハッシュマップを配列しています。(2、abby; 5、daisy; 3、denver; 4、frost; 1、froyo;)すなわち値はそれらのイニシャルに従って配列され、変更は反映されますキーで... - prof_jack
  • 編集版を見る - prof_jack
  • 私はあなたのコードを少し編集しました、そしてそれは望み通りに働いています。 - prof_jack
  • 与えられたアルゴリズムは、2つのwhileループの中で繰り返し値を調べるため、時間の複雑さがO(n ^ 2)であることに注意してください。エントリセットをリストに変換してから、コンパレータに基づいてリストをソートすると、より効率的な解決策になります。 - picmate 涅

144

それが私のためにうまく働くコードの下に試してみてください。昇順と降順の両方を選択できます。

import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;

public class SortMapByValue
{
    public static boolean ASC = true;
    public static boolean DESC = false;

    public static void main(String[] args)
    {

        // Creating dummy unsorted map
        Map<String, Integer> unsortMap = new HashMap<String, Integer>();
        unsortMap.put("B", 55);
        unsortMap.put("A", 80);
        unsortMap.put("D", 20);
        unsortMap.put("C", 70);

        System.out.println("Before sorting......");
        printMap(unsortMap);

        System.out.println("After sorting ascending order......");
        Map<String, Integer> sortedMapAsc = sortByComparator(unsortMap, ASC);
        printMap(sortedMapAsc);


        System.out.println("After sorting descindeng order......");
        Map<String, Integer> sortedMapDesc = sortByComparator(unsortMap, DESC);
        printMap(sortedMapDesc);

    }

    private static Map<String, Integer> sortByComparator(Map<String, Integer> unsortMap, final boolean order)
    {

        List<Entry<String, Integer>> list = new LinkedList<Entry<String, Integer>>(unsortMap.entrySet());

        // Sorting the list based on values
        Collections.sort(list, new Comparator<Entry<String, Integer>>()
        {
            public int compare(Entry<String, Integer> o1,
                    Entry<String, Integer> o2)
            {
                if (order)
                {
                    return o1.getValue().compareTo(o2.getValue());
                }
                else
                {
                    return o2.getValue().compareTo(o1.getValue());

                }
            }
        });

        // Maintaining insertion order with the help of LinkedList
        Map<String, Integer> sortedMap = new LinkedHashMap<String, Integer>();
        for (Entry<String, Integer> entry : list)
        {
            sortedMap.put(entry.getKey(), entry.getValue());
        }

        return sortedMap;
    }

    public static void printMap(Map<String, Integer> map)
    {
        for (Entry<String, Integer> entry : map.entrySet())
        {
            System.out.println("Key : " + entry.getKey() + " Value : "+ entry.getValue());
        }
    }
}

編集:バージョン2

stream for-each etcなどの新しいJava機能を使用

値が同じ場合、マップはキーでソートされます

 import java.util.*;
 import java.util.Map.Entry;
 import java.util.stream.Collectors;

 public class SortMapByValue

 {
    private static boolean ASC = true;
    private static boolean DESC = false;
    public static void main(String[] args)
    {

        // Creating dummy unsorted map
        Map<String, Integer> unsortMap = new HashMap<>();
        unsortMap.put("B", 55);
        unsortMap.put("A", 20);
        unsortMap.put("D", 20);
        unsortMap.put("C", 70);

        System.out.println("Before sorting......");
        printMap(unsortMap);

        System.out.println("After sorting ascending order......");
        Map<String, Integer> sortedMapAsc = sortByValue(unsortMap, ASC);
        printMap(sortedMapAsc);


        System.out.println("After sorting descending order......");
        Map<String, Integer> sortedMapDesc = sortByValue(unsortMap, DESC);
        printMap(sortedMapDesc);
    }

    private static Map<String, Integer> sortByValue(Map<String, Integer> unsortMap, final boolean order)
    {
        List<Entry<String, Integer>> list = new LinkedList<>(unsortMap.entrySet());

        // Sorting the list based on values
        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));

    }

    private static void printMap(Map<String, Integer> map)
    {
        map.forEach((key, value) -> System.out.println("Key : " + key + " Value : " + value));
    }
}


  • いい答え、コレクションutilsを使って適切な方法で書いた。 - Aditya
  • 私の問題を試してみましたが、マップ値にnull要素が含まれている可能性があるため追加する必要があるnullチェックをチェックしていない、コンパレータロジックに若干の変更が必要であることがわかりました。 - Aditya
  • 便利で明確な答え。 - Emalka
  • 私はこの解決法が最も簡単で理解しやすいと感じました。 - vikramvi
  • 長さでソートしたい場合value例えば、どれがStringですか? - Srujan Barai

54

Java 8の場合:

Map<Integer, String> sortedMap = 
     unsortedMap.entrySet().stream()
    .sorted(Entry.comparingByValue())
    .collect(Collectors.toMap(Entry::getKey, Entry::getValue,
                              (e1, e2) -> e1, LinkedHashMap::new));


  • このようなものを使うことができますか?Arrays.sort(hm.values().toArray()); - Hengameh
  • この並べ替えは逆にすることができますか?私が必要とする値は大きいものから小さいものへ - Aquarius Power
  • @AquariusPowerを参照してください。reversedメソッドatdocs.oracle.com/javase/8/docs/api/java/util/…で返されるコンパレータにそれを適用することができますcomparingByValue() - Vitalii Fedorenko
  • の帰りEntry.comparingByValue().reversed()と互換性がありません.sorted(...)予想されるパラメータ:(、逆ループになったforオーバー.entrySet().toArray()、キャストがそれを解決することができるかもしれない、私はテストするためにもっと時間が必要です:) - Aquarius Power
  • @AquariusPowerをキャストする必要はありません。ジェネリック型が何であるかについてのヒントをコンパイラに提供してください。Entry.<Integer, String>comparingByValue().reversed() - Vitalii Fedorenko

24

基本的には違います。 AHashMap基本的に無秩序です。任意のパターンあなたたぶん順序で見てくださいではないに頼る。

のようなソートマップがありますTreeMapしかし、彼らは伝統的に価値ではなくキーでソートします。特に複数のキーが同じ値を持つことができるので、値でソートするのは比較的珍しいです。

あなたがやろうとしていることについて、もっと文脈を与えることができますか?キーの数値を(文字列として)格納するだけの場合は、おそらくSortedSetといったTreeSetあなたのために働くだろうか?

あるいは、2つの別々のコレクションを単一のクラスにカプセル化して格納し、両方を同時に更新することもできますか。


  • 編集版を見る - prof_jack
  • たとえば、画像に表示される色を並べ替えることができます。 max_intカラーを使用できるので、速くする必要があります。 - Rafael Sanches
  • @ RafaelSanches:あなたのコメントの文脈が何であるかが明確ではありません。何だろう地図とにかくこの場合は?あなたは新しい質問をしたくなるかもしれません。 - Jon Skeet
  • 最も高性能な方法で、ハッシュマップを値順に並べるのに役立つ例を挙げています。 - Rafael Sanches
  • このようなものを使うことができますか?Arrays.sort(hm.values().toArray()); - Hengameh

11

package com.naveen.hashmap;

import java.util.*;
import java.util.Map.Entry;

public class SortBasedonValues {

    /**
     * @param args
     */
    public static void main(String[] args) {

        HashMap<String, Integer> hm = new HashMap<String, Integer>();
        hm.put("Naveen", 2);
        hm.put("Santosh", 3);
        hm.put("Ravi", 4);
        hm.put("Pramod", 1);
        Set<Entry<String, Integer>> set = hm.entrySet();
        List<Entry<String, Integer>> list = new ArrayList<Entry<String, Integer>>(
                set);
        Collections.sort(list, new Comparator<Map.Entry<String, Integer>>() {
            public int compare(Map.Entry<String, Integer> o1,
                    Map.Entry<String, Integer> o2) {
                return o2.getValue().compareTo(o1.getValue());
            }
        });

        for (Entry<String, Integer> entry : list) {
            System.out.println(entry.getValue());

        }

    }
}


  • このコードを実行してみたところ、import java.util.Map.Entry;'しかし、同じコードはでは動作しませんimport java.util.*;私の知る限りでは後者は前者を含みます。それでは、なぜそれはエラーになりますか? - NaveeNeo
  • シンプルでエレガント - Caveman

9

map.entrySet().stream()
                .sorted((k1, k2) -> -k1.getValue().compareTo(k2.getValue()))
                .forEach(k -> System.out.println(k.getKey() + ": " + k.getValue()));


  • 私にとって最も読みやすい解決策、そして仕事をする。値でソートされたHashMap上で実行 - user1813222

7

単純な解決策の1つとして、最終結果だけが必要な場合はtemp TreeMapを使用できます。

TreeMap<String, Integer> sortedMap = new TreeMap<String, Integer>();
for (Map.Entry entry : map.entrySet()) {
    sortedMap.put((String) entry.getValue(), (Integer)entry.getKey());
}

これにより、sortedMapのキーとして文字列がソートされます。


  • これは、すべての整数値が一意の場合にのみ機能します。それ以外の場合は、文字列が上書きされます。 - Kyzderp

4

TreeMapを拡張し、entrySet()メソッドとvalues()メソッドをオーバーライドします。キーと値は比較可能である必要があります。

コードに従ってください:

public class ValueSortedMap<K extends Comparable, V extends Comparable> extends TreeMap<K, V> {

    @Override
    public Set<Entry<K, V>> entrySet() {
        Set<Entry<K, V>> originalEntries = super.entrySet();
        Set<Entry<K, V>> sortedEntry = new TreeSet<Entry<K, V>>(new Comparator<Entry<K, V>>() {
            @Override
            public int compare(Entry<K, V> entryA, Entry<K, V> entryB) {
                int compareTo = entryA.getValue().compareTo(entryB.getValue());
                if(compareTo == 0) {
                    compareTo = entryA.getKey().compareTo(entryB.getKey());
                }
                return compareTo;
            }
        });
        sortedEntry.addAll(originalEntries);
        return sortedEntry;
    }

    @Override
    public Collection<V> values() {
        Set<V> sortedValues = new TreeSet<>(new Comparator<V>(){
            @Override
            public int compare(V vA, V vB) {
                return vA.compareTo(vB);
            }
        });
        sortedValues.addAll(super.values());
        return sortedValues;
    }
}

単体テスト:

public class ValueSortedMapTest {

    @Test
    public void basicTest() {
        Map<String, Integer> sortedMap = new ValueSortedMap<>();
        sortedMap.put("A",3);
        sortedMap.put("B",1);
        sortedMap.put("C",2);

        Assert.assertEquals("{B=1, C=2, A=3}", sortedMap.toString());
    }

    @Test
    public void repeatedValues() {
        Map<String, Double> sortedMap = new ValueSortedMap<>();
        sortedMap.put("D",67.3);
        sortedMap.put("A",99.5);
        sortedMap.put("B",67.4);
        sortedMap.put("C",67.4);

        Assert.assertEquals("{D=67.3, B=67.4, C=67.4, A=99.5}", sortedMap.toString());
    }

}


  • これは遵守していませんMapインタフェース。の適切な実装entrySet()です:"このマップに含まれるマッピングのSetビューを返します。セットはマップによって支えられているため、マップへの変更はセットに反映されます。その逆も同様です。同じことvalues()。 - Radiodef
  • 私が探していたものだけで素晴らしい - Shashank

2

解決策は見つかりましたが、マップのサイズが大きい場合はパフォーマンスがよくわかりません。通常の場合に役立ちます。

   /**
     * sort HashMap<String, CustomData> by value
     * CustomData needs to provide compareTo() for comparing CustomData
     * @param map
     */

    public void sortHashMapByValue(final HashMap<String, CustomData> map) {
        ArrayList<String> keys = new ArrayList<String>();
        keys.addAll(map.keySet());
        Collections.sort(keys, new Comparator<String>() {
            @Override
            public int compare(String lhs, String rhs) {
                CustomData val1 = map.get(lhs);
                CustomData val2 = map.get(rhs);
                if (val1 == null) {
                    return (val2 != null) ? 1 : 0;
                } else if (val1 != null) && (val2 != null)) {
                    return = val1.compareTo(val2);
                }
                else {
                    return 0;
                }
            }
        });

        for (String key : keys) {
            CustomData c = map.get(key);
            if (c != null) {
                Log.e("key:"+key+", CustomData:"+c.toString());
            } 
        }
    }


  • その中の誤字は、if((val1!= null)&&(val2!= null)){return val1.compareTo(val2); compareメソッドで - Tanuj Verma

0

package SortedSet;

import java.util.*;

public class HashMapValueSort {
public static void main(String[] args){
    final Map<Integer, String> map = new HashMap<Integer,String>();
    map.put(4,"Mango");
    map.put(3,"Apple");
    map.put(5,"Orange");
    map.put(8,"Fruits");
    map.put(23,"Vegetables");
    map.put(1,"Zebra");
    map.put(5,"Yellow");
    System.out.println(map);
    final HashMapValueSort sort = new HashMapValueSort();
    final Set<Map.Entry<Integer, String>> entry = map.entrySet();
    final Comparator<Map.Entry<Integer, String>> comparator = new Comparator<Map.Entry<Integer, String>>() {
        @Override
        public int compare(Map.Entry<Integer, String> o1, Map.Entry<Integer, String> o2) {
            String value1 = o1.getValue();
            String value2 = o2.getValue();
            return value1.compareTo(value2);
        }
    };
    final SortedSet<Map.Entry<Integer, String>> sortedSet = new TreeSet(comparator);
    sortedSet.addAll(entry);
    final Map<Integer,String> sortedMap =  new LinkedHashMap<Integer, String>();
    for(Map.Entry<Integer, String> entry1 : sortedSet ){
        sortedMap.put(entry1.getKey(),entry1.getValue());
    }
    System.out.println(sortedMap);
}
}


  • 良いですね。これをありがとう。 - Justin Patel

-1

public static TreeMap<String, String> sortMap(HashMap<String, String> passedMap, String byParam) {
    if(byParam.trim().toLowerCase().equalsIgnoreCase("byValue")) {
        // Altering the (key, value) -> (value, key)
        HashMap<String, String> newMap =  new HashMap<String, String>();
        for (Map.Entry<String, String> entry : passedMap.entrySet()) {
            newMap.put(entry.getValue(), entry.getKey());
        }
        return new TreeMap<String, String>(newMap);
    }
    return new TreeMap<String, String>(passedMap);
}


-1

import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map.Entry;

public class CollectionsSort {

    /**
     * @param args
     */`enter code here`
    public static void main(String[] args) {
        // TODO Auto-generated method stub

        CollectionsSort colleciotns = new CollectionsSort();

        List<combine> list = new ArrayList<combine>();
        HashMap<String, Integer> h = new HashMap<String, Integer>();
        h.put("nayanana", 10);
        h.put("lohith", 5);

        for (Entry<String, Integer> value : h.entrySet()) {
            combine a = colleciotns.new combine(value.getValue(),
                    value.getKey());
            list.add(a);
        }

        Collections.sort(list);
        for (int i = 0; i < list.size(); i++) {
            System.out.println(list.get(i));
        }
    }

    public class combine implements Comparable<combine> {

        public int value;
        public String key;

        public combine(int value, String key) {
            this.value = value;
            this.key = key;
        }

        @Override
        public int compareTo(combine arg0) {
            // TODO Auto-generated method stub
            return this.value > arg0.value ? 1 : this.value < arg0.value ? -1
                    : 0;
        }

        public String toString() {
            return this.value + " " + this.key;
        }
    }

}


  • 回答する前に、コードが正しく実行されていることを確認してください。質問者があなたの答えをよりよく理解できるように、コメントを追加することも検討してください。 - Daniel F. Thornton

リンクされた質問


関連する質問

最近の質問