List<HashMap<String, Object>>排序

如果列表中的元素类型是List<HashMap<String, Object>>,排序时需要考虑到value可能是任意类型的对象。在这种情况下,你可以针对具体的类型进行比较,或者使用Comparable接口来确保对象可以被正确比较。

示例代码

假设我们想要根据value的字符串表示来进行排序,可以使用toString()方法将Object转换为String,然后进行比较。下面是一个示例:

java 复制代码
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class SortByValue {

    public static void main(String[] args) {
        // 示例数据
        List<HashMap<String, String>> listOfMaps = new ArrayList<>();
        HashMap<String, String> map1 = new HashMap<>();
        map1.put("key1", "value3");
        map1.put("key2", "value2");
        listOfMaps.add(map1);

        HashMap<String, String> map2 = new HashMap<>();
        map2.put("key3", "value1");
        map2.put("key4", "value4");
        listOfMaps.add(map2);

        HashMap<String, String> map3 = new HashMap<>();
        map3.put("key5", "value5");
        map3.put("key6", "value1");
        listOfMaps.add(map3);

        // 排序
        List<HashMap<String, String>> sortedList = sortByValue(listOfMaps);

        // 输出结果
        System.out.println(sortedList);
    }

    public static List<HashMap<String, String>> sortByValue(List<HashMap<String, String>> listOfMaps) {
        Collections.sort(listOfMaps, new Comparator<HashMap<String, String>>() {
            @Override
            public int compare(HashMap<String, String> o1, HashMap<String, String> o2) {
                // 获取第一个键的值进行比较
                Iterator<Map.Entry<String, String>> iterator1 = o1.entrySet().iterator();
                Map.Entry<String, String> entry1 = iterator1.hasNext() ? iterator1.next() : null;
                
                Iterator<Map.Entry<String, String>> iterator2 = o2.entrySet().iterator();
                Map.Entry<String, String> entry2 = iterator2.hasNext() ? iterator2.next() : null;
                
                // 比较两个value
                if (entry1 != null && entry2 != null) {
                    return entry1.getValue().compareTo(entry2.getValue());
                }
                return 0;
            }
        });

        return listOfMaps;
    }
}

上面是升序排序,如果想降序排序,写成entry2.getValue().compareTo(entry1.getValue());就行了

如果是jdk1.8及以上,使用流来处理更简洁

java 复制代码
public static List<HashMap<String, String>> sortByValue(List<HashMap<String, String>> listOfMaps) {
        return listOfMaps.stream()
                .sorted(Comparator.comparing(map -> {
                    // 获取第一个键的值进行比较
                    return map.values().iterator().next();
                }))
                .collect(Collectors.toList());
    }
相关推荐
XuanRanDev43 分钟前
【每日一题】LeetCode - 三数之和
数据结构·算法·leetcode·1024程序员节
代码猪猪傻瓜coding1 小时前
力扣1 两数之和
数据结构·算法·leetcode
plmm烟酒僧1 小时前
Windows下QT调用MinGW编译的OpenCV
开发语言·windows·qt·opencv
南宫生2 小时前
贪心算法习题其三【力扣】【算法学习day.20】
java·数据结构·学习·算法·leetcode·贪心算法
weixin_432702263 小时前
代码随想录算法训练营第五十五天|图论理论基础
数据结构·python·算法·深度优先·图论
passer__jw7674 小时前
【LeetCode】【算法】283. 移动零
数据结构·算法·leetcode
Jtti4 小时前
Windows系统服务器怎么设置远程连接?详细步骤
运维·服务器·windows
爱吃生蚝的于勒4 小时前
深入学习指针(5)!!!!!!!!!!!!!!!
c语言·开发语言·数据结构·学习·计算机网络·算法
羊小猪~~4 小时前
数据结构C语言描述2(图文结合)--有头单链表,无头单链表(两种方法),链表反转、有序链表构建、排序等操作,考研可看
c语言·数据结构·c++·考研·算法·链表·visual studio
小奥超人4 小时前
PPT文件设置了修改权限,如何取消权?
windows·经验分享·microsoft·ppt·办公技巧