Javaマップで最大値に関連付けられたキーを見つける


137

マップの最大値に関連付けられたキーを取得する最も簡単な方法は何ですか?

最大値に対応するキーが必要な場合、Collections.max(someMap)が最大キーを返すと思います。

回答:


136

基本的には、「現在知られている最大値」とそれに関連付けられているキーの両方を覚えて、マップのエントリセットを反復処理する必要があります。(もちろん、両方を含むエントリのみです。)

例えば:

Map.Entry<Foo, Bar> maxEntry = null;

for (Map.Entry<Foo, Bar> entry : map.entrySet())
{
    if (maxEntry == null || entry.getValue().compareTo(maxEntry.getValue()) > 0)
    {
        maxEntry = entry;
    }
}

40
+1:同じ最大値のキーを複数持つことができます。このループは、最初に見つけたループを提供します。
Peter Lawrey、

21
> 0を> = 0に変更すると、最後に見つかったものになります
Aaron J Lang

1
Java 8ストリームの使用は、これを簡単にするのに役立ちますか?例:map.forEach((k、v)-> ...
zkarthik

3
@zkarthik:maxカスタムコンパレータを使用する方がおそらく簡単でしょう。
Jon Skeet、2014

112

完全を期すために、ここに それを行う方法

countMap.entrySet().stream().max((entry1, entry2) -> entry1.getValue() > entry2.getValue() ? 1 : -1).get().getKey();

または

Collections.max(countMap.entrySet(), (entry1, entry2) -> entry1.getValue() - entry2.getValue()).getKey();

または

Collections.max(countMap.entrySet(), Comparator.comparingInt(Map.Entry::getValue)).getKey();

3
(entry1, entry2) -> entry1.getValue() - entry2.getValue()コンパレータの方がコンパクトです。
JustABit 2016年

5
最大値に一致するすべてのキーが必要な場合はどうすればよいですか?
Mouna 2016年

4
コンパクトですがわかりにくいです。
Lluis Martinez

1
Integerクラスによって提供される比較メソッドを使用することもできますcountMap.entrySet().stream().max((entry1, entry2) -> Integer.compare(entry1.getValue(), entry2.getValue())).get().getKey();
Rui Filipe Pedro

3
または、Map.Entry.comparingByValue()代わりに使用することもできます
アレクセイグリゴレフ2017

54

このコードは最大値を持つすべてのキーを印刷します

public class NewClass4 {
    public static void main(String[] args)
    {
        HashMap<Integer,Integer>map=new HashMap<Integer, Integer>();
        map.put(1, 50);
        map.put(2, 60);
        map.put(3, 30);
        map.put(4, 60);
        map.put(5, 60);
        int maxValueInMap=(Collections.max(map.values()));  // This will return max value in the Hashmap
        for (Entry<Integer, Integer> entry : map.entrySet()) {  // Itrate through hashmap
            if (entry.getValue()==maxValueInMap) {
                System.out.println(entry.getKey());     // Print the key with max value
            }
        }

    }
}

47

Java-8を使用したシンプルなワンライナー

Key key = Collections.max(map.entrySet(), Map.Entry.comparingByValue()).getKey();


3
最もエレガントで最小化されたソリューション。ありがとう
DanielHáriJun

@ Samir、Javaのバージョンを確認してください。Sleiman Jneidは、Java 8で動作することを明示的に述べています
Vaibs

@Vaibs私はJava 8を使用していました。もう問題はありません。Hilikusの答えがうまくいきました。
Samir

:それはこのように私の作品 String max_key = Collections.max(map.entrySet(), Map.Entry.comparingByValue()).getKey();
ティムールNurlygayanov

8

以下は、適切なものを定義することにより、(明示的な追加のループなしで)直接行う方法ですComparator

int keyOfMaxValue = Collections.max(
                        yourMap.entrySet(), 
                        new Comparator<Entry<Double,Integer>>(){
                            @Override
                            public int compare(Entry<Integer, Integer> o1, Entry<Integer, Integer> o2) {
                                return o1.getValue() > o2.getValue()? 1:-1;
                            }
                        }).getKey();

6

マップが空の場合、最大値がない場合があるため、オプションを返す回答: map.entrySet().stream().max(Map.Entry.comparingByValue()).map(Map.Entry::getKey);


4

最大値を持つすべてのキーを取得するJava 8の方法。

Integer max = PROVIDED_MAP.entrySet()
            .stream()
            .max((entry1, entry2) -> entry1.getValue() > entry2.getValue() ? 1 : -1)
            .get()
            .getValue();

List listOfMax = PROVIDED_MAP.entrySet()
            .stream()
            .filter(entry -> entry.getValue() == max)
            .map(Map.Entry::getKey)
            .collect(Collectors.toList());

System.out.println(listOfMax);

また、parallelStream()代わりにを使用して並列化することもできますstream()


4

私は2つの方法があります。このメソッドを使用して、最大値のキーを取得します。

 public static Entry<String, Integer> getMaxEntry(Map<String, Integer> map){        
    Entry<String, Integer> maxEntry = null;
    Integer max = Collections.max(map.values());

    for(Entry<String, Integer> entry : map.entrySet()) {
        Integer value = entry.getValue();
        if(null != value && max == value) {
            maxEntry = entry;
        }
    }
    return maxEntry;
}

例として、メソッドを使用して最大値を持つエントリを取得します。

  Map.Entry<String, Integer> maxEntry =  getMaxEntry(map);

Java 8を使用して、最大値を含むオブジェクトを取得できます。

Object maxEntry = Collections.max(map.entrySet(), Map.Entry.comparingByValue()).getKey();      

System.out.println("maxEntry = " + maxEntry);

Java 8バージョンはシンプルですが効果的です。よくできました
Catbuiltsは

3

1.ストリームの使用

public <K, V extends Comparable<V>> V maxUsingStreamAndLambda(Map<K, V> map) {
    Optional<Entry<K, V>> maxEntry = map.entrySet()
        .stream()
        .max((Entry<K, V> e1, Entry<K, V> e2) -> e1.getValue()
            .compareTo(e2.getValue())
        );

    return maxEntry.get().getKey();
}

2. Collections.max()をラムダ式で使用する

    public <K, V extends Comparable<V>> V maxUsingCollectionsMaxAndLambda(Map<K, V> map) {
        Entry<K, V> maxEntry = Collections.max(map.entrySet(), (Entry<K, V> e1, Entry<K, V> e2) -> e1.getValue()
            .compareTo(e2.getValue()));
        return maxEntry.getKey();
    }

3.メソッド参照でのストリームの使用

    public <K, V extends Comparable<V>> V maxUsingStreamAndMethodReference(Map<K, V> map) {
        Optional<Entry<K, V>> maxEntry = map.entrySet()
            .stream()
            .max(Comparator.comparing(Map.Entry::getValue));
        return maxEntry.get()
            .getKey();
    }

4. Collections.max()の使用

    public <K, V extends Comparable<V>> V maxUsingCollectionsMax(Map<K, V> map) {
        Entry<K, V> maxEntry = Collections.max(map.entrySet(), new Comparator<Entry<K, V>>() {
            public int compare(Entry<K, V> e1, Entry<K, V> e2) {
                return e1.getValue()
                    .compareTo(e2.getValue());
            }
        });
        return maxEntry.getKey();
    }

5.単純な反復の使用

public <K, V extends Comparable<V>> V maxUsingIteration(Map<K, V> map) {
    Map.Entry<K, V> maxEntry = null;
    for (Map.Entry<K, V> entry : map.entrySet()) {
        if (maxEntry == null || entry.getValue()
            .compareTo(maxEntry.getValue()) > 0) {
            maxEntry = entry;
        }
    }
    return maxEntry.getKey();
}


2

理解しやすいです。以下のコードでは、maxKeyは最大値を保持するキーです。

int maxKey = 0;
int maxValue = 0;
for(int i : birds.keySet())
{
    if(birds.get(i) > maxValue)
    {
        maxKey = i;
        maxValue = birds.get(i);
    }
}

1

このソリューションは大丈夫ですか?

int[] a = { 1, 2, 3, 4, 5, 6, 7, 7, 7, 7 };
Map<Integer, Integer> map = new HashMap<Integer, Integer>();
for (int i : a) {
Integer count = map.get(i);
map.put(i, count != null ? count + 1 : 0);
}
Integer max = Collections.max(map.keySet());
System.out.println(max);
System.out.println(map);

1

マップの過半数要素/最大要素:

public class Main {
     public static void main(String[] args) {
     int[] a = {1,3,4,3,4,3,2,3,3,3,3,3};
     List<Integer> list = Arrays.stream(a).boxed().collect(Collectors.toList());
     Map<Integer, Long> map = list.parallelStream()
             .collect(Collectors.groupingBy(Function.identity(),Collectors.counting()));
     System.out.println("Map => " + map);
     //{1=1, 2=1, 3=8, 4=2}
     map.entrySet()
     .stream()
     .max(Comparator.comparing(Entry::getValue))//compare the values and get the maximum value
     .map(Entry::getKey)// get the key appearing maximum number of times
     .ifPresentOrElse(System.out::println,() -> new RuntimeException("no such thing"));

     /*
      * OUTPUT : Map => {1=1, 2=1, 3=8, 4=2} 
      * 3
      */
     // or in  this way 
     System.out.println(".............");
     Integer maxAppearedElement = map.entrySet()
             .parallelStream()
             .max(Comparator.comparing(Entry::getValue))
             .map(Entry::getKey)
             .get();
     System.out.println(maxAppearedElement);

     } 
}

1

与えられた地図

HashMap abc = new HashMap <>();

最大値を持つすべてのマップエントリを取得します。

フィルターで以下のメソッドのいずれかを使用して、最小値または最大値のセットのそれぞれのマップエントリを取得できます

Collections.max(abc.values())
Collections.min(abc.values())
Collections.max(abc.keys())
Collections.max(abc.keys())

abc.entrySet().stream().filter(entry -> entry.getValue() == Collections.max(abc.values()))

フィルターマップのキーのみを取得する場合

abc.entrySet()
       .stream()
       .filter(entry -> entry.getValue() == Collections.max(abc.values()))
       .map(Map.Entry::getKey);

フィルターされたマップの値を取得する場合

abc.entrySet()
      .stream()
      .filter(entry -> entry.getValue() == Collections.max(abc.values()))
      .map(Map.Entry::getvalue)

そのようなキーをすべてリストで取得したい場合:

abc.entrySet()
  .stream()
  .filter(entry -> entry.getValue() == Collections.max(abc.values()))
  .map(Map.Entry::getKey)
  .collect(Collectors.toList())

そのような値をすべてリストで取得したい場合:

abc.entrySet()
  .stream()
  .filter(entry -> entry.getValue() == Collections.max(abc.values()))
  .map(Map.Entry::getvalue)
  .collect(Collectors.toList())

0

私のプロジェクトでは、JonとFathahのソリューションを少し変更したバージョンを使用しました。同じ値を持つ複数のエントリの場合、最後に見つかったエントリを返します。

public static Entry<String, Integer> getMaxEntry(Map<String, Integer> map) {        
    Entry<String, Integer> maxEntry = null;
    Integer max = Collections.max(map.values());

    for(Entry<String, Integer> entry : map.entrySet()) {
        Integer value = entry.getValue();

        if(null != value && max == value) {
            maxEntry = entry;
        }
    }

    return maxEntry;
}

0
int maxValue = 0;
int mKey = 0;
for(Integer key: map.keySet()){
    if(map.get(key) > maxValue){
        maxValue = map.get(key);
        mKey = key;
    }
}
System.out.println("Max Value " + maxValue + " is associated with " + mKey + " key");

2
このフォーラムでは、コードのみの回答は一般に嫌われています。コードの説明が含まれるように回答を編集してください。OPの問題をどのように解決しますか?
mypetlion

-2

あなたはそのようにすることができます

HashMap<Integer,Integer> hm = new HashMap<Integer,Integer>();
hm.put(1,10);
hm.put(2,45);
hm.put(3,100);
Iterator<Integer> it = hm.keySet().iterator();
Integer fk = it.next();
Integer max = hm.get(fk);
while(it.hasNext()) {
    Integer k = it.next();
    Integer val = hm.get(k);
    if (val > max){
         max = val;
         fk=k;
    }
}
System.out.println("Max Value "+max+" is associated with "+fk+" key");
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.