吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 827|回复: 7
收起左侧

[求助] java list求解

[复制链接]
积木工具箱 发表于 2021-12-9 11:20
有a b两个list<String>

如何实现and 和 or

and b数组里面元素如果全在a里面可以找到就返回真

or b数组里面的元素可以在a数组里找到一个就返回真

list有没有什么方法可以直接实现这个

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

小飞鸟 发表于 2021-12-9 11:27
java list 取交集和并集 百度一下吧,自己动手才行.
小公主々 发表于 2021-12-9 11:31
大方 发表于 2021-12-9 11:40
[Java] 纯文本查看 复制代码
public static List<Element> retainElementList(List<List<Element>> elementLists) {
     
        Optional<List<Element>> result = elementLists.parallelStream()
            .filter(elementList -> elementList != null && ((List) elementList).size() != 0)
            .reduce((a, b) -> {
                a.retainAll(b);
                return a;
        });
        return result.orElse(new ArrayList<>());
    }
缘浅丶 发表于 2021-12-9 11:53
本帖最后由 缘浅丶 于 2021-12-9 13:33 编辑

    public boolean and(List<String> listB){
        return listA.containsAll(listB);
    }

    public boolean or(List<String> listB){
        for (String string:listB){
            if(listA.contains(string)){
                return true;
            }
        }
        return false;
    }
缘浅丶 发表于 2021-12-9 11:54
本帖最后由 缘浅丶 于 2021-12-9 13:33 编辑

[Java] 纯文本查看 复制代码
    public boolean and(List<String> listB){
        return listA.containsAll(listB);
    }

    public boolean or(List<String> listB){
        for (String string:listB){
            if(listA.contains(string)){
                return true;
            }
        }
        return false;
    }

免费评分

参与人数 1吾爱币 +1 热心值 +1 收起 理由
积木工具箱 + 1 + 1 我很赞同!

查看全部评分

你猜啊 发表于 2021-12-9 15:34
/**
     * 获取两个集合的交集
     *
     * @Param c1
     * @param c2
     * @return
     */
    public static <T> List<T> getInterSection(Collection<T> c1, Collection<T> c2) {
        Set<T> intersections = Sets.intersection(Sets.newHashSet(c1), Sets.newHashSet(c2));
        return Lists.newArrayList(intersections);
    }

    /**
     * 获取两个集合的合集
     *
     * @param c1
     * @param c2
     * @return
     */
    public static <T> List<T> getUnionSection(Collection<T> c1, Collection<T> c2) {
        c1.addAll(c2);
        Set<T> newHashSet = Sets.newHashSet(c1);
        return Lists.newArrayList(newHashSet);
    }
chengxuyuan01 发表于 2021-12-11 10:20
循环是最简单的,但是你说集合有没有直接的内置方法我就不清楚了,没遇到过这种需求
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 18:42

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表