JAVA map排序实现

JAVA map排序实现Map排序的方式有很多种,这里记录下自己总结的两种比较常用的方式:按键排序(sortbykey),按值排序(sortbyvalue)。1、按键排序jdk内置的java.util包下的TreeMap<K,V>既可满足此类需求,向其构造方法TreeMap(Comparator<?superK>comparator)传入我们自定义的比较器即可实…

大家好,又见面了,我是你们的朋友全栈君。

Map排序的方式有很多种,这里记录下自己总结的两种比较常用的方式:按键排序(sort by key), 按值排序(sort by value)。

 

1、按键排序

jdk内置的java.util包下的TreeMap<K,V>既可满足此类需求,向其构造方法 TreeMap(Comparator<? super K> comparator)  传入我们自定义的比较器即可实现按键排序。

 

实现代码

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

public class MapSortDemo {

 

    public static void main(String[] args) {

 

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

 

        map.put("KFC", "kfc");

        map.put("WNBA", "wnba");

        map.put("NBA", "nba");

        map.put("CBA", "cba");

 

        Map<String, String> resultMap = sortMapByKey(map);    //按Key进行排序

 

        for (Map.Entry<String, String> entry : resultMap.entrySet()) {

            System.out.println(entry.getKey() + " " + entry.getValue());

        }

    }

     

    /**

     * 使用 Map按key进行排序

     * @param map

     * @return

     */

    public static Map<String, String> sortMapByKey(Map<String, String> map) {

        if (map == null || map.isEmpty()) {

            return null;

        }

 

        Map<String, String> sortMap = new TreeMap<String, String>(

                new MapKeyComparator());

 

        sortMap.putAll(map);

 

        return sortMap;

    }

}

 

比较器类

1

2

3

4

5

6

7

8

class MapKeyComparator implements Comparator<String>{

 

    @Override

    public int compare(String str1, String str2) {

         

        return str1.compareTo(str2);

    }

}

 

2、按值排序

按值排序就相对麻烦些了,貌似没有直接可用的数据结构能处理类似需求,需要我们自己转换一下。
Map本身按值排序是很有意义的,很多场合下都会遇到类似需求,可以认为其值是定义的某种规则或者权重。

原理:将待排序Map中的所有元素置于一个列表中,接着使用Collections的一个静态方法 sort(List<T> list, Comparator<? super T> c) 
来排序列表,同样是用比较器定义比较规则。排序后的列表中的元素再依次装入Map,为了肯定的保证Map中元素与排序后的List中的元素的顺序一致,使用了LinkedHashMap数据类型。

 

实现代码

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

public class MapSortDemo {

 

    public static void main(String[] args) {

 

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

 

        map.put("KFC", "kfc");

        map.put("WNBA", "wnba");

        map.put("NBA", "nba");

        map.put("CBA", "cba");

 

        Map<String, String> resultMap = sortMapByKey(map);    //按Key进行排序

//      Map<String, String> resultMap = sortMapByValue(map); //按Value进行排序

 

        for (Map.Entry<String, String> entry : resultMap.entrySet()) {

            System.out.println(entry.getKey() + " " + entry.getValue());

        }

    }

     

    /**

     * 使用 Map按value进行排序

     * @param map

     * @return

     */

    public static Map<String, String> sortMapByValue(Map<String, String> oriMap) {

        if (oriMap == null || oriMap.isEmpty()) {

            return null;

        }

        Map<String, String> sortedMap = new LinkedHashMap<String, String>();

        List<Map.Entry<String, String>> entryList = new ArrayList<Map.Entry<String, String>>(

                oriMap.entrySet());

        Collections.sort(entryList, new MapValueComparator());

 

        Iterator<Map.Entry<String, String>> iter = entryList.iterator();

        Map.Entry<String, String> tmpEntry = null;

        while (iter.hasNext()) {

            tmpEntry = iter.next();

            sortedMap.put(tmpEntry.getKey(), tmpEntry.getValue());

        }

        return sortedMap;

    }

}

比较器类

1

2

3

4

5

6

7

8

class MapValueComparator implements Comparator<Map.Entry<String, String>> {

 

    @Override

    public int compare(Entry<String, String> me1, Entry<String, String> me2) {

 

        return me1.getValue().compareTo(me2.getValue());

    }

}

例:

在一个仓库里,有一排条形码,其中第 i 个条形码为 barcodes[i]

请你重新排列这些条形码,使其中两个相邻的条形码 不能 相等。 你可以返回任何满足该要求的答案,此题保证存在答案。

class Solution {
    public int[] rearrangeBarcodes(int[] barcodes) {
        int[] res=new int[barcodes.length];
        int j=0;
        Map<Integer,Integer> map=new LinkedHashMap<>();
        for(int i=0;i<barcodes.length;i++){
            map.putIfAbsent(barcodes[i],0);
            map.put(barcodes[i],map.get(barcodes[i])+1);
        }
        ArrayList<Map.Entry<Integer,Integer>> list=new ArrayList<>(map.entrySet());
        Collections.sort(list,new c());
        Iterator itr=list.iterator();
        Map.Entry<Integer, Integer> tmpEntry = null;
        while(itr.hasNext()){
            tmpEntry=(Map.Entry<Integer,Integer>)itr.next();
            int num=tmpEntry.getValue();
            int n=tmpEntry.getKey();
            for(int i=0;i<num;i++){
                res[j]=n;
                j+=2;
                if(j>=res.length){
                    j=1;
                }
            }
        }
        return res;
    }
}
class c implements Comparator<Map.Entry<Integer,Integer>>{
    public int compare(Map.Entry<Integer,Integer> m1,Map.Entry<Integer,Integer> m2){
        return -(m1.getValue()-m2.getValue());
    }
}

 

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/159777.html原文链接:https://javaforall.net

(0)
上一篇 2022年7月15日 上午9:46
下一篇 2022年7月15日 上午9:46


相关推荐

  • powermodule_getsocketopt

    powermodule_getsocketopt严格模式ES6的模块自动采用严格模式,不管你有没有在模块头部加上"usestrict";。严格模式的限制如下变量必须声明后再使用函数的参数不能有同名属性,否则报错不能

    2022年7月30日
    7
  • 局域网与广域网详解区别_广域网有哪些

    局域网与广域网详解区别_广域网有哪些1.局域网  局域网,英文名字LocalAreaNetwork,缩写为LAN。是指在某一区域内由多台计算机互联成的计算机组。一般是方圆几千米以内。局域网是封闭型的,可以由办公室内的两台计算机组成,也可以由一个公司内的上千台计算机组成。生活中我们的每一个学校、公司都是一个局域网局域网可以理解为我们自己使用路由器、交换机组成的内部网络这个网络实现的是内部机器的通信,比如咱们访问学校的…

    2022年10月19日
    4
  • Ubuntu20.04修改root用户密码[通俗易懂]

    Ubuntu20.04修改root用户密码[通俗易懂]我们装完Ubuntu20.04之后,就需要设置下root用户的密码。先看看这张图,这是实际操作流程。具体操作如下:1.第一步:执行如下命令,设置密码sudopasswd2.第二步:输入当前用户的密码3.第三步:输入root用户的密码4.第四步:再次输入root用户的密码5.第五步:执行以下命令,切换到root用户suroot6.第六步:输入root用户的密码密码验证通过后就切换到了root用户了!…

    2026年4月16日
    5
  • Linux系统如何查看版本信息

    Linux系统如何查看版本信息

    2021年10月14日
    69
  • 迭代器Python_python迭代器使用

    迭代器Python_python迭代器使用迭代器迭代是访问集合元素的一种方式。迭代器是一个可以记住遍历的位置的对象。迭代器对象从集合的第一个元素开始访问,直到所有的元素被访问完结束。迭代器只能往前不会后退。可迭代对象我们已经知道可以对l

    2022年8月6日
    11
  • opencv的resize函数

    opencv的resize函数一 Opencv 官方文档中 resize 的描述 resizeResize C voidresize InputArraysr OutputArrayd Sizedsize doublefx 0 doublefy 0 intinterpola INTER LINEAR Python cv2 resize src dsize dst fx fy interpolatio dstC voidcvRes

    2026年3月19日
    2

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号