如何在 Java 中对 HashMap 进行排序
提供的 HashMap 是键和 ArrayList 之间的映射。要对此结构进行排序,我们有两个选择:使用 TreeMap 或编写自定义代码按 ArrayList 值排序。
选项 1:使用 TreeMap
如果需要因为 Map 接口不是必需的,请考虑使用 TreeMap 代替。 TreeMap 在其键之间保持自然排序,提供对键值对的排序访问。
选项 2:按 ArrayList 值自定义排序
根据以下条件对 HashMap 进行排序ArrayList 值,可以使用以下代码:
// HashMap to be sorted Map<String, ArrayList<Integer>> unsortedMap = new HashMap<>(); // Create a list to store the sorted values List<Integer> sortedValues = new ArrayList<>(); // Iterate over the HashMap values and extract the ArrayLists for (Map.Entry<String, ArrayList<Integer>> entry : unsortedMap.entrySet()) { sortedValues.addAll(entry.getValue()); } // Sort the values in ascending order Collections.sort(sortedValues); // Create a new HashMap with the sorted values Map<String, ArrayList<Integer>> sortedMap = new HashMap<>(); for (Map.Entry<String, ArrayList<Integer>> entry : unsortedMap.entrySet()) { sortedMap.put(entry.getKey(), new ArrayList<>( // Sorted list sortedValues.subList(0, entry.getValue().size()))); sortedValues.subList(0, entry.getValue().size()).clear(); }
以上是如何在 Java 中使用 ArrayList 值对 HashMap 进行排序?的详细内容。更多信息请关注PHP中文网其他相关文章!