Java 中 ArrayList 的交集和并集
2022-08-31 07:23:28
有什么方法可以做到这一点吗?我正在寻找,但找不到任何东西。
另一个问题:我需要这些方法,以便可以过滤文件。有些是过滤器,有些是过滤器(如在集合论中),所以我需要根据所有文件和保存这些文件的Unite/inters arrayLists进行过滤。AND
OR
我应该使用不同的数据结构来保存文件吗?还有什么可以提供更好的运行时吗?
有什么方法可以做到这一点吗?我正在寻找,但找不到任何东西。
另一个问题:我需要这些方法,以便可以过滤文件。有些是过滤器,有些是过滤器(如在集合论中),所以我需要根据所有文件和保存这些文件的Unite/inters arrayLists进行过滤。AND
OR
我应该使用不同的数据结构来保存文件吗?还有什么可以提供更好的运行时吗?
这是一个不使用任何第三方库的简单实现。与 相比,这些方法的主要优点是这些方法不会修改原始列表输入到这些方法中。retainAll
removeAll
addAll
public class Test {
public static void main(String... args) throws Exception {
List<String> list1 = new ArrayList<String>(Arrays.asList("A", "B", "C"));
List<String> list2 = new ArrayList<String>(Arrays.asList("B", "C", "D", "E", "F"));
System.out.println(new Test().intersection(list1, list2));
System.out.println(new Test().union(list1, list2));
}
public <T> List<T> union(List<T> list1, List<T> list2) {
Set<T> set = new HashSet<T>();
set.addAll(list1);
set.addAll(list2);
return new ArrayList<T>(set);
}
public <T> List<T> intersection(List<T> list1, List<T> list2) {
List<T> list = new ArrayList<T>();
for (T t : list1) {
if(list2.contains(t)) {
list.add(t);
}
}
return list;
}
}
集合(所以 ArrayList 也有:
col.retainAll(otherCol) // for intersection
col.addAll(otherCol) // for union
如果接受重复,请使用 List 实现;如果您不接受重复,请使用 Set 实现:
Collection<String> col1 = new ArrayList<String>(); // {a, b, c}
// Collection<String> col1 = new TreeSet<String>();
col1.add("a");
col1.add("b");
col1.add("c");
Collection<String> col2 = new ArrayList<String>(); // {b, c, d, e}
// Collection<String> col2 = new TreeSet<String>();
col2.add("b");
col2.add("c");
col2.add("d");
col2.add("e");
col1.addAll(col2);
System.out.println(col1);
//output for ArrayList: [a, b, c, b, c, d, e]
//output for TreeSet: [a, b, c, d, e]