前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >java计算集合交差并集

java计算集合交差并集

作者头像
code4it
发布2018-09-17 14:43:14
6430
发布2018-09-17 14:43:14
举报
文章被收录于专栏:码匠的流水账

这里简单介绍下,如何使用apache commons以及guava的类库来计算集合的交差并集。

maven

代码语言:javascript
复制
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
            <version>22.0</version>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-collections4</artifactId>
            <version>4.1</version>
        </dependency>

guava

代码语言:javascript
复制
        //交集
        Set<Integer> intersectionSet = Sets.intersection(set1, set2);
        //差集
        Set<Integer> subtractSet = Sets.difference(set1, set2);
        //并集
        Set<Integer> unionSet = Sets.union(set1, set2);

commons-collection4

代码语言:javascript
复制
        //交集
        Collection<Integer> intersectionSet = CollectionUtils.intersection(set1, set2);
        //差集
        Collection<Integer> subtractSet = CollectionUtils.subtract(set1, set2);
        //并集
        Collection<Integer> unionSet = CollectionUtils.union(set1, set2);
本文参与 腾讯云自媒体同步曝光计划,分享自微信公众号。
原始发表:2017-08-04,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 码匠的流水账 微信公众号,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • maven
  • guava
  • commons-collection4
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档