且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

根据密钥对散列图进行排序

更新时间:2022-10-18 21:43:54

使用排序后的 / code>:

 地图< String,Float> map = new TreeMap<>(yourMap); 

它会自动放入按键排序的条目。我认为自然的 String 排序在你的情况下可以。


$ b

请注意 HashMap 由于查找优化不会保持顺序。


I have the following hashmap in java:

{B046=0.0, A061=3.0, A071=0.0, B085=0.0, B075=3.0, B076=9.0, B086=3.0, B095=0.0, B096=0.0, A052=0.0, B066=0.0, B056=9.0, B065=0.0, B055=9.0}

How should I go about sorting the hashmap such that the Alphabet, followed by the numerical figures are taken into account?

The resulting hashmap should look like this:

{A052=0.0,A061=3.0,A071=0.0,B046=0.0,B055=9.0,B056=9.0,B065=0.0,B066=0.0,B075=3.0,B076=9.0,B085=0.0,B086=3.0,B095=0.0,B096=0.0}

Appreciate the help!

Use sorted TreeMap:

Map<String, Float> map = new TreeMap<>(yourMap);

It will automatically put entries sorted by keys. I think natural String ordering will be fine in your case.

Note that HashMap due to lookup optimizations does not preserve order.