Obtaining key associated with corresponding maximum value in a Map(TreeMap/HashMap)

前端 未结 2 436
萌比男神i
萌比男神i 2021-01-22 14:22

I have written the below code to find out the key(String) that has the maximum value(Integer) using TreeMap in JAVA.

public static void maxprofitItem(int[] costs         


        
2条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-22 15:20

    You seem to be asking if using TreeMap instead of HashMap will give you a simpler way to find the key corresponding to the largest value/

    The answer to that is ... unfortunately ... No.

提交回复
热议问题