标签:工具 res ima rem 提升 大数 ash nbsp next
在公司做项目需要求两个集合的补集,考虑到collection类有removeAll方法,决定采用这种方式;结果程序一直卡在那儿不动了;
数据量是两个集合的数据差不多都有60万,直接导致程序处于假死状态(程序当然是还在运行);
出现问题始终要解决的,我又给程序修改为先用retainAll求交集,然后再removeAll的方式,效果不明显(事实是也假死了),我的应用场景还要求实时性,没办法只能从其他方面找寻思路了;
结合list的特性,LinkedList插入删除效率高,ArrayList查询效率高,对这里的使用场景我们显然需要将集合转换成LinkedList,小集合需要查询换成ArrayList。
以下是我对list的优化工具类,执行结果较其他方法不是一个数量级的提升!,代码如下
public static List removeAll(List src,List oth){ List result = new LinkedList(src);//大集合用linkedlist ArrayList othHash = new ArrayList(oth);//小集合用ArrayList Iterator iter = result.iterator();//采用Iterator迭代器进行数据的操作 while(iter.hasNext()){ if(othHash.contains(iter.next())){ iter.remove(); } } return result; }
50w对比数据30w的数据量用时128毫秒
JAVA 集合框架优化之list.removeAll大数据量优化
标签:工具 res ima rem 提升 大数 ash nbsp next
原文地址:http://www.cnblogs.com/hao66/p/7236152.html