Java中的Map

来源:互联网 发布:淘宝导航代码生成器 编辑:程序博客网 时间:2024/05/30 12:03

我们都知道,java中的Map结构是key->value键值对存储的,而且根据Map的特性,同一个Map中 不存在两个Key相同的元素,而value不存在这个限制。换句话说,在同一个Map中Key是唯一的,而value不唯一。Map是一个接口,我们不能 直接声明一个Map类型的对象,在实际开发中,比较常用的Map性数据结构是HashMap和TreeMap,它们都是Map的直接子类。如果考虑到存取 效率的话,建议使用HashMap数据结构,而如果需要考虑到Key的顺序,建议使用TreeMap,但是TreeMap在删除、添加过程中需要排序,性能比较差。

以Key进行排序

我们可以声明一个TreeMap对象

Map<Integer, Person> map = new TreeMap<Integer, Person>();

然后往map中添加元素,可以通过输出结果,可以发现map里面的元素都是排好序的

//遍历集合for (Iterator<Integer> it = map.keySet().iterator(); it.hasNext();) {    Person person = map.get(it.next());    System.out.println(person.getId_card() + " " + person.getName());}

我们也可以声明一个HashMap对象,然后把HashMap对象赋值给TreeMap,如下:

Map<Integer, Person> map = new HashMap<Integer, Person>();TreeMap treemap = new TreeMap(map);

以Value进行排序

先声明一个HashMap对象:

Map<String, Integer> map = new HashMap<String, Integer>();

然后我们可以将Map集合转换成List集合中,而List使用ArrayList来实现如下:

List<Entry<String,Integer>> list =    new ArrayList<Entry<String,Integer>>(map.entrySet());

最后通过Collections.sort(List l, Comparator c)方法来进行排序,代码如下:

Collections.sort(list, new Comparator<Map.Entry<String, Integer>>() {    public int compare(Map.Entry<String, Integer> o1,            Map.Entry<String, Integer> o2) {        return (o2.getValue() - o1.getValue());    }});

上述代码是讲map中的value按照逆序排序,如果需要按照升序进行排序的话,只需要修改o2.getValue() - o1.getValue()为o1.getValue() - o2.getValue()即可

map的遍历方式

【2】【5】

vector的遍历方式

【3】和使用【4】【6】

Java的语法参考网站:【7】

来源于:
【1】http://www.cnblogs.com/avivahe/p/5657071.html
【2】http://www.cnblogs.com/fczjuever/archive/2013/04/07/3005997.html
【3】http://www.cnblogs.com/skywang12345/p/3308833.html
【4】http://www.cnblogs.com/strivers/archive/2010/12/28/1918877.html
【5】http://blog.csdn.net/tjcyjd/article/details/11111401
【6】http://blog.csdn.net/jungle_hello/article/details/51123678
【7】http://www.runoob.com/java/java-data-structures.html

0 0
原创粉丝点击