java是一种可以撰写跨平台应用软件的面向对象的程序设计语言,是由Sun Microsystems公司于1995年5月推出的Java程序设计语言和Java平台(即JavaEE, JavaME, JavaSE)的总称。本站提供基于Java框架struts,spring,hibernate等的桌面应用、web交互及移动终端的开发技巧与资料
保持永久学习的心态,将成就一个优秀的你,来 继续搞起java知识。
2.创建一个方法继承 java.util.Comparator。
3.添加Map属性,及含map参数的构造方法。
4.重写compare方法,按照自己想要的方式排序。
5.实例化TreeMap,将自定义比较器实例化传人TreeMap构造方法。
6.输出即可。
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 43 | package com.map; import java.util.HashMap; import java.util.Map; import java.util.Map.Entry; import java.util.Set; import java.util.TreeMap; /* * 将字符串中名字提取出来,放在map中。 * 统计名字的个数。 * 将名字的个数按照从小到大的顺序排序。 */ public class MapTest { public static void main(String[] args) { String s= "1,aa,2-2,bb,3-2,aa,4-5,cc,6-8,ff,9-11,wr,12" ; String ss[]=s.split( "-" ); Map<String,Integer> mp= new HashMap<String,Integer>(); for (String si:ss) { String p[]=si.split( "," ); if (mp.containsKey(p[ 1 ])) mp.put(p[ 1 ],mp.get(p[ 1 ])+ 1 ); else mp.put(p[ 1 ], 1 ); } Set<Entry<String,Integer>> set=mp.entrySet(); for (Entry<String,Integer>e:set) { System.out.println(e.getKey()+ " " +e.getValue()); } Map<String,Integer> tmap= new TreeMap<String,Integer>( new TComparator(mp)); tmap.putAll(mp); System.out.println(); set=tmap.entrySet(); for (Entry<String,Integer>e:set) { System.out.println(e.getKey()+ " " +e.getValue()); } } } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | package com.map; import java.util.Comparator; import java.util.Map; public class TComparator implements Comparator<String> { Map<String,Integer> mp; public TComparator(Map<String,Integer> mp) { this .mp=mp; } @Override public int compare(String o1, String o2) { return mp.get(o1)>mp.get(o2)?- 1 : 1 ; } } |
Map排序TreeMap\u6309\u952e\u503c排序
因为水平有限,难免有疏忽或者不准确的地方,希望大家能够直接指出来,我会及时改正。一切为了知识的分享。
后续会有更多的精彩的内容分享给大家。