[HashSet] HashSet이란?

Halo·2025년 5월 28일

Algorithm

목록 보기
53/85
post-thumbnail

📒 설명

자바에서 집합을 표현할 때 사용되는 자료구조로, 정렬이 되지않고 중복을 허용하지 않는다.


⭕ 예시

HashSet<Integer> set = new HashSet<>();

HashSet<Integer> set = new HashSet<>(Arrays.asList(1,2,3)); //초기값 지정
set.add(value);
set.remove(value);
set.contains(value); // 존재하면 true
set.clear(); // 초기화
set = new HashSet<>(Arrays.asList()); // 다른 객체로 초기화
//등등

profile
새끼 고양이 키우고 싶다

0개의 댓글