码迷,mamicode.com
首页 > 其他好文 > 详细

ArrayList、LinkedList、HashMap、TreeMap 存储速度对比

时间:2018-11-22 21:43:33      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:图片   lis   stat   put   image   width   new   src   void   

1、百 级别的数据(100)

技术分享图片

 

 2、千 级别的数据(1000)

技术分享图片

 

 

  3、万 级别的数据(10000)

技术分享图片

 

 

  4、十万 级别的数据(100000)

技术分享图片

 

 

  5、百万 级别的数据(1000000)

技术分享图片

 

 

 6、千万 级别的数据(10000000)

技术分享图片

 

附上代码:

 

    public static void main(String[] args) {

        long l1 = System.currentTimeMillis();
        ArrayList arrayList = new ArrayList();
        for (int i = 1; i < 100; i++) {
            arrayList.add(i);
        }
        long l2 = System.currentTimeMillis();
        System.out.println(l2 - l1);
        LinkedList linkedList = new LinkedList();
        for (int i = 1; i < 100; i++) {
            linkedList.add(i);
        }
        long l3 = System.currentTimeMillis();
        System.out.println(l3 - l2);
        Map map = new HashMap();
        for (int i = 1; i < 100; i++) {
            map.put(i,i);
        }
        long l4 = System.currentTimeMillis();
        System.out.println(l4 - l3);

        Map treeMap = new TreeMap<>();
        for (int i = 1; i < 100; i++) {
            treeMap.put(i,i);
        }
        long l5 = System.currentTimeMillis();
        System.out.println(l5 - l4);
    }

  

 

ArrayList、LinkedList、HashMap、TreeMap 存储速度对比

标签:图片   lis   stat   put   image   width   new   src   void   

原文地址:https://www.cnblogs.com/dyh2025/p/10004043.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!