Set
HashSet
java
Set set = new HashSet();
TreeSet
레드-블랙 트리를 이용해 집합을 구현.
집합을 알아서 정렬해준다.
java
Set set = new TreeSEt();
Set set = new HashSet();
레드-블랙 트리를 이용해 집합을 구현.
집합을 알아서 정렬해준다.
Set set = new TreeSEt();