求交集,差集,并集,善用java的set

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求交集,差集,并集,善用java的set相关的知识,希望对你有一定的参考价值。

当有题目有求这些结果时,使用集合数据结构还是很快的。需要考虑的是,注意map和set的区别。

public static void main(String[] args) {
        Set<Integer> result = new HashSet<Integer>();
        Set<Integer> set1 = new HashSet<Integer>(){{
            add(1);
            add(3);
            add(5);
        }};

        Set<Integer> set2 = new HashSet<Integer>(){{
            add(1);
            add(2);
            add(3);
        }};

        result.clear();
        result.addAll(set1);
        result.retainAll(set2);
        System.out.println("交集:"+result);

        result.clear();
        result.addAll(set1);
        result.removeAll(set2);
        System.out.println("差集:"+result);

        result.clear();
        result.addAll(set1);
        result.addAll(set2);
        System.out.println("并集:"+result);

    }

以上是关于求交集,差集,并集,善用java的set的主要内容,如果未能解决你的问题,请参考以下文章

java对两个字符串数组取交集并集和差集

python中列表之间求差集交集并集

java 求交集 并集 差集

java找到两个list的交集并集差集

JAVA求字符串数组交集并集和差集

Python 求两个文本文件以行为单位的交集 并集 差集