Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- db
- Annotation
- 권한정책
- 두개리스트비교
- 지옥같은git
- instance생성
- PostgreSQL
- route53
- 널포인터에러
- 리스트합집합
- ansible
- 중복제거
- enum
- Spring
- Java
- AWS
- hashset
- peer authentication 에러
- mybatis
- wordpress블로그
- WordPress
- 리스트비교
- anymatch메서드
- lightsail
- list중복제거
- 리스트차집합
- awsconsole
- enumtype
- postgresql13
- 리스트교집합
Archives
- Today
- Total
Anyway
[JAVA] 두 개의 리스트에서 차집합 구하기 본문
List<Long> A = {1,2,3}
List<Long> B = {2,3,4}
이렇게 두 개의 리스트가 있을 때 내가 구하고 싶은 것은 A의 차집합니다.
// A 리스트의 차집합을 구하는 함수 생성
public static List<Long> findDifference(List<Long> A, List<Long> B) {
Set<Long> setB = new HashSet<>(B);
return A.stream()
.filter(element -> !setB.contains(element))
.collect(Collectors.toList());
}
stream()을 사용한 것은 A의 요소를 stream으로 처리하여 B에 없는 요소만 필터링하기 위해서다.
>>> 추가로
[합집합]에 대하여
List<Long> union = new ArrayList<>(A);
union.addAll(B);
[교집합]에 대하여
List<Long> intersection = A.stream()
.filter(B::contains)
.collect(Collectors.toList());