对A1A2A10B1B2N12排序

简介: 对A1A2A10B1B2N12排序

 

// rowList为待排序的集合
        String reg = "[^\\d]";
        Collections.sort(rowList, (o1, o2) -> {
            int first = Integer.parseInt(o1.getHoleNo().replaceAll(reg, ""))+o1.getHoleNo().getBytes()[0]*100;
            int second = Integer.parseInt(o2.getHoleNo().replaceAll(reg, ""))+o2.getHoleNo().getBytes()[0]*100;
            return  first.compareTo(second);
        });
        return rowList;

image.gif

排序效果:

image.gif编辑

相关文章
|
2月前
排序1
排序1
16 0
|
5月前
|
6月前
|
人工智能 搜索推荐 算法
几种排序的实现
几种排序的实现
26 2
|
算法 搜索推荐
排序篇(六)----排序小结
排序篇(六)----排序小结
43 0
|
算法
排序(详解)下
排序(详解)
67 0
|
搜索推荐
7-207 排序
7-207 排序
55 0
六个排序比较
主要介绍六个排序比较
135 0