gpt4 book ai didi

java - Java 中列表的 AND/OR 运算

转载 作者:行者123 更新时间:2023-12-03 03:18:03 31 4
gpt4 key购买 nike

让我们考虑两个数组列表。

ArrayList<Integer> list1 = new ArrayList<Integer>();
list1.add(1);
list1.add(2);
list1.add(3);

ArrayList<Integer> list2 = new ArrayList<Integer>();
list2.add(3);
list2.add(4);
list2.add(5);

我想在这些列表之间执行 AND 和 OR 运算。例如,在这里,当我执行黑白 list1 和 list2 的 AND 运算时,输出应该是一个仅包含 3 的列表当我执行黑白 list1 和 list2 的 OR 运算时,输出应该是包含 1,2,3,4,5 的列表(而不是 3 重复两次)。

Java有没有可能实现这个场景?在这种情况下我们可以使用 Java 8 Streams 吗?请给我最有效的方式来获得答案。

最佳答案

使用 Stream API:

List<Integer> union = Stream.concat(list1.stream(), list2.stream())
.distinct()
.collect(Collectors.toList());

List<Integer> intersection = list1.stream()
.filter(list2::contains)
.collect(Collectors.toList());
<小时/>

没有 Stream API:

List<Integer> intersection = new ArrayList<>(list1);
intersection.retainAll(list2);

List<Integer> union = new ArrayList<>(list1);
List<Integer> toAdd = new ArrayList<>(list2);
toAdd.removeAll(list1); // avoid duplicates
union.addAll(toAdd);

关于java - Java 中列表的 AND/OR 运算,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29297548/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com